pub trait DefaultLinkOps {
type Ops: LinkOps + Default;
const NEW: Self::Ops;
}
Expand description
The default implementation of LinkOps
associated with a link type.
Required Associated Constants§
Required Associated Types§
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.