pub trait Receive {
type Frame: Frame;
type Error;
// Required method
fn receive(&mut self) -> Result<Self::Frame, Self::Error>;
}Available on crate features
can and nb only.pub trait Receive {
type Frame: Frame;
type Error;
// Required method
fn receive(&mut self) -> Result<Self::Frame, Self::Error>;
}can and nb only.