pub struct CatalogEntry {
    item: CatalogItem,
    used_by: Vec<GlobalId>,
    id: GlobalId,
    oid: u32,
    name: QualifiedObjectName,
}

Fields

item: CatalogItemused_by: Vec<GlobalId>id: GlobalIdoid: u32name: QualifiedObjectName

Implementations

Reports the description of the datums produced by this catalog item.

Returns the mz_sql::func::Func associated with this CatalogEntry.

Returns the inner Index if this entry is an index, else None.

Returns the inner Source if this entry is a source, else None.

Returns the inner Sink if this entry is a sink, else None.

Returns the inner Secret if this entry is a secret, else None.

Returns the mz_storage::client::sources::SourceDesc associated with this CatalogEntry.

Reports whether this catalog entry is a table.

Collects the identifiers of the dataflows that this dataflow depends upon.

Returns the CatalogItem associated with this catalog entry.

Returns the global ID of this catalog entry.

Returns the OID of this catalog entry.

Returns the fully qualified name of this catalog entry.

Returns the identifiers of the dataflows that depend upon this dataflow.

Returns the connection ID that this item belongs to, if this item is temporary.

Trait Implementations

Returns the fully qualified name of the catalog item.

Returns a stable ID for the catalog item.

Returns the catalog item’s OID.

Returns a description of the result set produced by the catalog item. Read more

Returns the resolved function. Read more

Returns the resolved source connection. Read more

Returns the resolved connection. Read more

A normalized SQL statement that describes how to create the catalog item. Read more

Returns the type of the catalog item.

Returns the index details associated with the catalog item, if the catalog item is an index. Read more

Returns the column defaults associated with the catalog item, if the catalog item is a table. Read more

Returns the type information associated with the catalog item, if the catalog item is a type. Read more

Returns the IDs of the catalog items upon which this catalog item depends. Read more

Returns the IDs of the catalog items that depend upon this catalog item.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Attaches the provided Context to this type, returning a WithContext wrapper. Read more

Attaches the current Context to this type, returning a WithContext wrapper. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Wrap the input message T in a tonic::Request

Upcasts this ProgressEventTimestamp to Any. Read more

Returns the name of the concrete type of this object. Read more

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more