pub trait Object:
From<Family<Self>>
+ Sized
+ Clone
+ 'static {
// Required method
fn family(&self) -> Family<Self>;
}Expand description
Operations available on every instance of a linked object.
The only supported way to implement this is via #[linked::object].
Required Methods§
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.