Struct repr::RelationType[][src]

pub struct RelationType {
    pub column_types: Vec<ColumnType>,
    pub keys: Vec<Vec<usize>>,
}
Expand description

The type of a relation.

Fields

column_types: Vec<ColumnType>

The type for each column, in order.

keys: Vec<Vec<usize>>

Sets of indices that are “keys” for the collection.

Each element in this list is a set of column indices, each with the property that the collection contains at most one record with each distinct set of values for each column. Alternately, for a specific set of values assigned to the these columns there is at most one record.

A collection can contain multiple sets of keys, although it is common to have either zero or one sets of key indices.

Implementations

Constructs a RelationType representing the relation with no columns and no keys.

Constructs a new RelationType from specified column types.

The RelationType will have no keys.

Adds a new key for the relation.

Computes the number of columns in the relation.

Gets the index of the columns used when creating a default index.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

Adds names and types of the fields of the struct or enum to rti. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. 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

Compare self to key and return true if they are equal.

Performs the conversion.

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

Performs the conversion.

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