pub trait GenericCosmicBox<T> {
    fn new(_: T) -> Self;
    fn set_trigger(&self, options: &TriggerOptions) -> CosmicBoxResult<()>;
    fn get_trigger(&self) -> CosmicBoxResult<TriggerOptions>;
    fn reset(&self) -> CosmicBoxResult<()>;
    fn set_address(&self, _: u8) -> CosmicBoxResult<()>;
    fn get_counters(&self) -> CosmicBoxResult<Counters>;
}

Required Methods

Implementors