pub struct Sen0682ReadoutConfig {
pub configure_device: bool,
pub row_id: u8,
pub start_column: u8,
pub end_column: u8,
}Fields§
§configure_device: bool§row_id: u8§start_column: u8§end_column: u8Trait Implementations§
Source§impl Clone for Sen0682ReadoutConfig
impl Clone for Sen0682ReadoutConfig
Source§fn clone(&self) -> Sen0682ReadoutConfig
fn clone(&self) -> Sen0682ReadoutConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Sen0682ReadoutConfig
impl Debug for Sen0682ReadoutConfig
Source§impl PartialEq for Sen0682ReadoutConfig
impl PartialEq for Sen0682ReadoutConfig
Source§fn eq(&self, other: &Sen0682ReadoutConfig) -> bool
fn eq(&self, other: &Sen0682ReadoutConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for Sen0682ReadoutConfig
impl StructuralPartialEq for Sen0682ReadoutConfig
Auto Trait Implementations§
impl Freeze for Sen0682ReadoutConfig
impl RefUnwindSafe for Sen0682ReadoutConfig
impl Send for Sen0682ReadoutConfig
impl Sync for Sen0682ReadoutConfig
impl Unpin for Sen0682ReadoutConfig
impl UnsafeUnpin for Sen0682ReadoutConfig
impl UnwindSafe for Sen0682ReadoutConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more