iso15765-2 0.1.0-b4

ISO-TP trait define.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(feature = "can")]
pub mod can;
mod constants;
mod core;
mod error;
mod frame;
mod isotp;

pub use crate::constants::*;
pub use crate::core::{
    Event as IsoTpEvent, FlowControlContext, FlowControlState, State as IsoTpState,
};
pub use crate::error::Error as IsoTpError;
pub use crate::frame::{Frame as IsoTpFrame, FrameType as IsoTpFrameType};
pub use crate::isotp::*;