[][src]Trait embedded_hal_can::Interface

pub trait Interface {
    type Id: Id;
    type Frame: Frame<Id = Self::Id>;
    type Error;
    type Filter: Filter<Id = Self::Id>;
}

A CAN interface

May be a Transmitter, Receiver or both.

Associated Types

type Id: Id

The Id type that works with this Interface

type Frame: Frame<Id = Self::Id>

The Can Frame this Interface operates on

type Error

The Interface Error type

type Filter: Filter<Id = Self::Id>

The Filter type used in this Interface

Loading content...

Implementors

Loading content...