pub struct MultiIndex {
    pub code: Name,
    pub scope: Name,
    pub table: Name,
    pub db: TableI64,
    pub idxdbs: Vec<Box<dyn IdxTable>>,
    pub unpacker: fn(_: &[u8]) -> Box<dyn MultiIndexValue>,
}
Expand description

Fields

code: Name
scope: Name
table: Name
db: TableI64
idxdbs: Vec<Box<dyn IdxTable>>
unpacker: fn(_: &[u8]) -> Box<dyn MultiIndexValue>

Implementations

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.

Calls U::from(self).

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

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.