pub trait MetaCompositionSignature: MetaTypewhere
Self::Signature: CompositionSignature,{
// Provided methods
fn compose(&self, b: &Self) -> Self { ... }
fn compose_mut(&mut self, b: &Self) { ... }
}Provided Methods§
fn compose(&self, b: &Self) -> Self
fn compose_mut(&mut self, b: &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.