pub struct Profile4Config {
pub data_id: u32,
pub offset: u16,
pub min_data_length: u16,
pub max_data_length: u16,
pub max_delta_counter: u16,
}Expand description
Configuration for E2E Profile 4
Fields§
§data_id: u32data id
offset: u16Bit offset of the first bit of the E2E header from the beginning of the Data
min_data_length: u16Minimal length of Data, in bits
max_data_length: u16Maximal length of Data, in bits
max_delta_counter: u16Maximum allowed delta between consecutive counters
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 moreSource§impl Debug for Profile4Config
impl Debug for Profile4Config
Auto Trait Implementations§
impl Freeze for Profile4Config
impl RefUnwindSafe for Profile4Config
impl Send for Profile4Config
impl Sync for Profile4Config
impl Unpin 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