pub trait IntoOwned: Clone + 'static {
type Owned;
type Table;
// Required method
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§
fn into_owned(self, table: &Self::Table) -> Result<Self::Owned>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.