pub trait FromTableRef<T>: FromObjRef<T> {
// Provided method
fn from_table_ref(from: &T) -> Self { ... }
}Expand description
A trait for types that can fully resolve themselves.
This means that any offsets held in this type are resolved relative to the start of the table itself (and not some parent table)
Provided Methods§
fn from_table_ref(from: &T) -> Self
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.