Trait signalo_traits::StateMut[][src]

pub trait StateMut: State {
    unsafe fn state_mut(&mut self) -> &mut Self::State;
}

Trait for systems with mutably accessible state.

Required Methods

Returns a mutable reference to the internal state of the filter.

Important:

Relying on the internal structure of an object breaks encapsulation.

Implementors