EntityLabelInt

Type Alias EntityLabelInt 

Source
pub type EntityLabelInt<T> = EntityLabel<usize, T, String>;
Expand description

An EntityLabel that has an Int as key

Aliased Type§

pub enum EntityLabelInt<T> {
    KeyLabel(Key<usize>, String),
    Data(Box<T>),
    None,
}

Variants§

§

KeyLabel(Key<usize>, String)

Key and Label for this entity

§

Data(Box<T>)

Created/Fetched data for the entity

§

None

For when you have no data to fill or null from database