pub struct RemoteStatusA {
pub house_code: u8,
pub receiver_code: u8,
pub switch_to: u8,
pub repeats: u16,
}
Fields§
§house_code: u8
§receiver_code: u8
§switch_to: u8
§repeats: u16
Trait Implementations§
source§impl Clone for RemoteStatusA
impl Clone for RemoteStatusA
source§fn clone(&self) -> RemoteStatusA
fn clone(&self) -> RemoteStatusA
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 Debug for RemoteStatusA
impl Debug for RemoteStatusA
source§impl Default for RemoteStatusA
impl Default for RemoteStatusA
source§fn default() -> RemoteStatusA
fn default() -> RemoteStatusA
Returns the “default value” for a type. Read more
source§impl FromByteSlice for RemoteStatusA
impl FromByteSlice for RemoteStatusA
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]) -> RemoteStatusA
fn from_le_byte_slice(bytes: &[u8]) -> RemoteStatusA
Deserialize the implementing type from a byte slice.
source§impl Hash for RemoteStatusA
impl Hash for RemoteStatusA
source§impl PartialEq for RemoteStatusA
impl PartialEq for RemoteStatusA
source§fn eq(&self, other: &RemoteStatusA) -> bool
fn eq(&self, other: &RemoteStatusA) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for RemoteStatusA
impl Eq for RemoteStatusA
impl StructuralPartialEq for RemoteStatusA
Auto Trait Implementations§
impl RefUnwindSafe for RemoteStatusA
impl Send for RemoteStatusA
impl Sync for RemoteStatusA
impl Unpin for RemoteStatusA
impl UnwindSafe for RemoteStatusA
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