pub struct ModeStatusChange {
pub status0: ModeStatus0,
pub status1: u8,
pub changed_mask0: ModeStatus0,
pub changed_mask1: u8,
}Expand description
A mode-status update request.
Fields§
§status0: ModeStatus0Desired primary status bits.
status1: u8Desired secondary status byte.
changed_mask0: ModeStatus0Primary changed-bit mask.
changed_mask1: u8Secondary changed-bit mask.
Trait Implementations§
Source§impl Clone for ModeStatusChange
impl Clone for ModeStatusChange
Source§fn clone(&self) -> ModeStatusChange
fn clone(&self) -> ModeStatusChange
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 moreimpl Copy for ModeStatusChange
Source§impl Debug for ModeStatusChange
impl Debug for ModeStatusChange
impl Eq for ModeStatusChange
Source§impl Hash for ModeStatusChange
impl Hash for ModeStatusChange
Source§impl PartialEq for ModeStatusChange
impl PartialEq for ModeStatusChange
impl StructuralPartialEq for ModeStatusChange
Auto Trait Implementations§
impl Freeze for ModeStatusChange
impl RefUnwindSafe for ModeStatusChange
impl Send for ModeStatusChange
impl Sync for ModeStatusChange
impl Unpin for ModeStatusChange
impl UnsafeUnpin for ModeStatusChange
impl UnwindSafe for ModeStatusChange
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