pub struct SensorIdentifiersLowLevel {
pub identifiers_length: u16,
pub identifiers_chunk_offset: u16,
pub identifiers_chunk_data: [u8; 60],
}
Fields§
§identifiers_length: u16
§identifiers_chunk_offset: u16
§identifiers_chunk_data: [u8; 60]
Trait Implementations§
Source§impl Clone for SensorIdentifiersLowLevel
impl Clone for SensorIdentifiersLowLevel
Source§fn clone(&self) -> SensorIdentifiersLowLevel
fn clone(&self) -> SensorIdentifiersLowLevel
Returns a copy 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 FromByteSlice for SensorIdentifiersLowLevel
impl FromByteSlice for SensorIdentifiersLowLevel
Source§fn bytes_expected() -> usize
fn bytes_expected() -> usize
Returns how many bytes are expected to deserialize a instance of the implementing type. Currently this method is only used for strings.
Source§fn from_le_byte_slice(bytes: &[u8]) -> SensorIdentifiersLowLevel
fn from_le_byte_slice(bytes: &[u8]) -> SensorIdentifiersLowLevel
Deserialize the implementing type from a byte slice.
Source§impl LowLevelRead<u8, SensorIdentifiersResult> for SensorIdentifiersLowLevel
impl LowLevelRead<u8, SensorIdentifiersResult> for SensorIdentifiersLowLevel
fn ll_message_length(&self) -> usize
fn ll_message_chunk_offset(&self) -> usize
fn ll_message_chunk_data(&self) -> &[u8] ⓘ
fn get_result(&self) -> SensorIdentifiersResult
impl Copy for SensorIdentifiersLowLevel
Auto Trait Implementations§
impl Freeze for SensorIdentifiersLowLevel
impl RefUnwindSafe for SensorIdentifiersLowLevel
impl Send for SensorIdentifiersLowLevel
impl Sync for SensorIdentifiersLowLevel
impl Unpin for SensorIdentifiersLowLevel
impl UnwindSafe for SensorIdentifiersLowLevel
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