pub struct ReassemblerConfig {
pub addressing_mode: IsoTpAddressingMode,
pub block_size: u8,
pub st_min: u8,
}Expand description
Configuration for an ISO-TP reassembler session.
Fields§
§addressing_mode: IsoTpAddressingMode§block_size: u8Block size to advertise in flow control frames. 0 = send all consecutive frames without waiting.
st_min: u8Minimum separation time to advertise in flow control frames (ms).
Implementations§
Source§impl ReassemblerConfig
impl ReassemblerConfig
pub fn new(addressing_mode: IsoTpAddressingMode) -> Self
Trait Implementations§
Source§impl Clone for ReassemblerConfig
impl Clone for ReassemblerConfig
Source§fn clone(&self) -> ReassemblerConfig
fn clone(&self) -> ReassemblerConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReassemblerConfig
impl Debug for ReassemblerConfig
Source§impl PartialEq for ReassemblerConfig
impl PartialEq for ReassemblerConfig
impl Eq for ReassemblerConfig
impl StructuralPartialEq for ReassemblerConfig
Auto Trait Implementations§
impl Freeze for ReassemblerConfig
impl RefUnwindSafe for ReassemblerConfig
impl Send for ReassemblerConfig
impl Sync for ReassemblerConfig
impl Unpin for ReassemblerConfig
impl UnsafeUnpin for ReassemblerConfig
impl UnwindSafe for ReassemblerConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more