pub trait ChangeInterfacewhere
Self: Debug,{
// Provided method
fn add_to<C: ChangerInterface>(self, changer: &mut C) -> &mut C
where Self: Sized + 'static { ... }
}Expand description
Context.
Provided Methods§
Trait Implementations§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".