pub trait Generic {
    // Required methods
    fn hw_address(&self) -> Result<String, Error>;
    fn type_description(&self) -> Result<String, Error>;
}

Required Methods§

Implementors§