logo
pub trait ChangeInterface: Debug {
    fn add_to<C>(self, changer: &mut C) -> &mut C
    where
        C: ChangerInterface,
        Self: 'static
, { ... } }
Expand description

Context.

Provided Methods

Add change to queue of events.

Implementors