ChannelFeatures

Trait ChannelFeatures 

Source
pub trait ChannelFeatures {
    // Required methods
    fn is_fd_capable(&self) -> Result<bool, CanError>;
    fn is_delay_capable(&self) -> Result<bool, CanError>;
    fn is_io_capable(&self) -> Result<bool, CanError>;
}

Required Methods§

Implementors§

Source§

impl<T: HasChannelFeatures + Channel> ChannelFeatures for T