Trait bismuth::input::InputDifference [] [src]

pub trait InputDifference<E> where
    E: Element, 
{ type Difference: IntoIterator<Item = (E, <E::State as State>::Difference)>; fn difference(&self) -> Self::Difference; }

Determines the difference in state for an input element.

Associated Types

Iterable representation of differences in state.

Required Methods

Gets the difference in state for an input element.

Implementors