Trait ruststep::tables::Holder[][src]

pub trait Holder: Clone + 'static {
    type Owned;
    type Table;
    fn into_owned(self, table: &Self::Table) -> Result<Self::Owned, Error>;
fn name() -> &'static str;
fn attr_len() -> usize; }
Expand description

Trait for resolving a reference through entity id

Associated Types

Required methods

Implementors