[][src]Trait persy::IndexType

pub trait IndexType: Display + IndexOrd + Clone + IndexSerialization {
    type Wrapper: WrapperType<Self>;
    pub fn get_id() -> u8;
pub fn get_type_id() -> IndexTypeId; }

Trait implemented by all supported types in the index

Associated Types

type Wrapper: WrapperType<Self>[src]

Loading content...

Required methods

Loading content...

Implementations on Foreign Types

impl IndexType for u8[src]

type Wrapper = Container<Self>

impl IndexType for u16[src]

type Wrapper = Container<Self>

impl IndexType for u32[src]

type Wrapper = Container<Self>

impl IndexType for u64[src]

type Wrapper = Container<Self>

impl IndexType for u128[src]

type Wrapper = Container<Self>

impl IndexType for i8[src]

type Wrapper = Container<Self>

impl IndexType for i16[src]

type Wrapper = Container<Self>

impl IndexType for i32[src]

type Wrapper = Container<Self>

impl IndexType for i64[src]

type Wrapper = Container<Self>

impl IndexType for i128[src]

type Wrapper = Container<Self>

impl IndexType for f32[src]

type Wrapper = Container<Self>

impl IndexType for f64[src]

type Wrapper = Container<Self>

impl IndexType for String[src]

type Wrapper = Container<Self>

Loading content...

Implementors

impl IndexType for ByteVec[src]

type Wrapper = Container<Self>

impl IndexType for PersyId[src]

type Wrapper = Container<Self>

Loading content...