pub struct Profile4Config {
pub data_id: u32,
pub max_delta_counter: u16,
}Expand description
Configuration for E2E Profile 4.
Fields§
§data_id: u32Unique identifier for this data element (included in CRC calculation).
max_delta_counter: u16Maximum allowed counter delta before reporting WrongSequence.
A delta of 1 means consecutive messages, delta > 1 means some lost.
Implementations§
Trait Implementations§
Source§impl Clone for Profile4Config
impl Clone for Profile4Config
Source§fn clone(&self) -> Profile4Config
fn clone(&self) -> Profile4Config
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 moreAuto Trait Implementations§
impl Freeze for Profile4Config
impl RefUnwindSafe for Profile4Config
impl Send for Profile4Config
impl Sync for Profile4Config
impl Unpin for Profile4Config
impl UnsafeUnpin for Profile4Config
impl UnwindSafe for Profile4Config
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