pub trait HasObservers<I, OT, S>: Debug where
    OT: ObserversTuple<I, S>, 
{ fn observers(&self) -> &OT; fn observers_mut(&mut self) -> &mut OT; }
Expand description

Holds a tuple of Observers

Required Methods

Get the linked observers

Get the linked observers (mutable)

Implementors