pub trait Eth: Errors {
    fn get_capabilities(&self) -> Result<EnumSet<Capability>, Self::Error>;
fn get_status(&self) -> Status;
fn get_configuration(&self) -> Result<Configuration, Self::Error>;
fn set_configuration(
        &mut self,
        conf: &Configuration
    ) -> Result<(), Self::Error>; }

Required methods

Implementors