pub trait IsoTPChannel: PayloadChannel {
    // Required method
    fn set_iso_tp_cfg(&mut self, cfg: IsoTPSettings) -> ChannelResult<()>;
}
Expand description

Extended trait for PayloadChannel when utilizing ISO-TP to send data to the ECU

Required Methods§

source

fn set_iso_tp_cfg(&mut self, cfg: IsoTPSettings) -> ChannelResult<()>

Sets the ISO-TP specific configuration for the Channel

§Parameters
  • The configuration of the ISO-TP Channel

Implementations on Foreign Types§

source§

impl<T: IsoTPChannel + ?Sized> IsoTPChannel for Box<T>

source§

impl<T: IsoTPChannel + ?Sized> IsoTPChannel for Arc<Mutex<T>>

Implementors§