pub trait IntoOwned: Clone + 'static {
    type Owned;
    type Table;

    fn into_owned(self, table: &Self::Table) -> Result<Self::Owned>;
}
Expand description

Trait for resolving a reference through entity id

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors