pub struct TemperatureImageLowLevelEvent {
pub image_chunk_offset: u16,
pub image_chunk_data: [u16; 31],
}
Fields§
§image_chunk_offset: u16
§image_chunk_data: [u16; 31]
Trait Implementations§
Source§impl Clone for TemperatureImageLowLevelEvent
impl Clone for TemperatureImageLowLevelEvent
Source§fn clone(&self) -> TemperatureImageLowLevelEvent
fn clone(&self) -> TemperatureImageLowLevelEvent
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 Default for TemperatureImageLowLevelEvent
impl Default for TemperatureImageLowLevelEvent
Source§fn default() -> TemperatureImageLowLevelEvent
fn default() -> TemperatureImageLowLevelEvent
Returns the “default value” for a type. Read more
Source§impl FromByteSlice for TemperatureImageLowLevelEvent
impl FromByteSlice for TemperatureImageLowLevelEvent
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]) -> TemperatureImageLowLevelEvent
fn from_le_byte_slice(bytes: &[u8]) -> TemperatureImageLowLevelEvent
Deserialize the implementing type from a byte slice.
Source§impl Hash for TemperatureImageLowLevelEvent
impl Hash for TemperatureImageLowLevelEvent
Source§impl LowLevelRead<u16, TemperatureImageResult> for TemperatureImageLowLevelEvent
impl LowLevelRead<u16, TemperatureImageResult> for TemperatureImageLowLevelEvent
fn ll_message_length(&self) -> usize
fn ll_message_chunk_offset(&self) -> usize
fn ll_message_chunk_data(&self) -> &[u16]
fn get_result(&self) -> TemperatureImageResult
Source§impl PartialEq for TemperatureImageLowLevelEvent
impl PartialEq for TemperatureImageLowLevelEvent
Source§fn eq(&self, other: &TemperatureImageLowLevelEvent) -> bool
fn eq(&self, other: &TemperatureImageLowLevelEvent) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for TemperatureImageLowLevelEvent
impl Eq for TemperatureImageLowLevelEvent
impl StructuralPartialEq for TemperatureImageLowLevelEvent
Auto Trait Implementations§
impl Freeze for TemperatureImageLowLevelEvent
impl RefUnwindSafe for TemperatureImageLowLevelEvent
impl Send for TemperatureImageLowLevelEvent
impl Sync for TemperatureImageLowLevelEvent
impl Unpin for TemperatureImageLowLevelEvent
impl UnwindSafe for TemperatureImageLowLevelEvent
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