Trait embedded_svc::eth::Eth[][src]

pub trait Eth {
    type Error;
    fn get_supported_operation_modes(
        &self
    ) -> Result<EnumSet<OperationMode>, 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>; }

Associated Types

Required methods

Implementors