pub trait ChangeInterface: Debug {
// Provided method
fn add_to<C>(self, changer: &mut C) -> &mut C
where C: ChangerInterface,
Self: Sized + 'static { ... }
}
Expand description
Context.
Provided Methods§
Trait Implementations§
Source§impl<'c> Clone for Box<dyn ChangeInterface + 'c>
impl<'c> Clone for Box<dyn ChangeInterface + 'c>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more