pub struct Profile5Config {
pub data_length: u16,
pub data_id: u16,
pub max_delta_counter: u8,
pub offset: u16,
}Expand description
Configuration for E2E Profile 5
Fields§
§data_length: u16Length of Data, in bits. The value shall be a multiple of 8.
data_id: u16An array of appropriately chosen Data IDs for protection against masquerading.
max_delta_counter: u8Maximum allowed delta between consecutive counters
offset: u16Bit offset of E2E header in the Data[] array in bits.
Trait Implementations§
Source§impl Clone for Profile5Config
impl Clone for Profile5Config
Source§fn clone(&self) -> Profile5Config
fn clone(&self) -> Profile5Config
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 Profile5Config
impl Debug for Profile5Config
Auto Trait Implementations§
impl Freeze for Profile5Config
impl RefUnwindSafe for Profile5Config
impl Send for Profile5Config
impl Sync for Profile5Config
impl Unpin for Profile5Config
impl UnwindSafe for Profile5Config
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