pub struct HighContrastImageLowLevelEvent {
pub image_chunk_offset: u16,
pub image_chunk_data: [u8; 62],
}
Fields§
§image_chunk_offset: u16
§image_chunk_data: [u8; 62]
Trait Implementations§
Source§impl Clone for HighContrastImageLowLevelEvent
impl Clone for HighContrastImageLowLevelEvent
Source§fn clone(&self) -> HighContrastImageLowLevelEvent
fn clone(&self) -> HighContrastImageLowLevelEvent
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 HighContrastImageLowLevelEvent
impl FromByteSlice for HighContrastImageLowLevelEvent
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]) -> HighContrastImageLowLevelEvent
fn from_le_byte_slice(bytes: &[u8]) -> HighContrastImageLowLevelEvent
Deserialize the implementing type from a byte slice.
Source§impl LowLevelRead<u8, HighContrastImageResult> for HighContrastImageLowLevelEvent
impl LowLevelRead<u8, HighContrastImageResult> for HighContrastImageLowLevelEvent
fn ll_message_length(&self) -> usize
fn ll_message_chunk_offset(&self) -> usize
fn ll_message_chunk_data(&self) -> &[u8] ⓘ
fn get_result(&self) -> HighContrastImageResult
impl Copy for HighContrastImageLowLevelEvent
Auto Trait Implementations§
impl Freeze for HighContrastImageLowLevelEvent
impl RefUnwindSafe for HighContrastImageLowLevelEvent
impl Send for HighContrastImageLowLevelEvent
impl Sync for HighContrastImageLowLevelEvent
impl Unpin for HighContrastImageLowLevelEvent
impl UnwindSafe for HighContrastImageLowLevelEvent
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