Trait shared_memory::EventSet[][src]

pub trait EventSet {
    fn set(
        &mut self,
        event_index: usize,
        state: EventState
    ) -> Result<(), Box<Error>>; }

Provides the ability to set an event to a state

Required Methods

Set an event to a specific state

The caller must validate event_index before calling this method

Implementors