pub struct TwiAddr(/* private fields */);
Expand description
A TWI device address
Implementations§
Trait Implementations§
source§impl PartialEq for TwiAddr
impl PartialEq for TwiAddr
source§impl Persist for TwiAddr
impl Persist for TwiAddr
source§fn load_from<R: Read>(reader: &mut R) -> PersistenceResult<Self>where
Self: Sized,
fn load_from<R: Read>(reader: &mut R) -> PersistenceResult<Self>where
Self: Sized,
Load an instance of this struct from the given reader
source§fn save_to<W: Write>(&self, writer: &mut W) -> PersistenceResult<()>
fn save_to<W: Write>(&self, writer: &mut W) -> PersistenceResult<()>
Save an instance of this struct to the given writer.
source§fn load_with<R: Read>(reader: R) -> PersistenceResult<Self>
fn load_with<R: Read>(reader: R) -> PersistenceResult<Self>
Take the given reader and use it to load an instance of this type.
impl Copy for TwiAddr
impl Eq for TwiAddr
impl StructuralPartialEq for TwiAddr
Auto Trait Implementations§
impl Freeze for TwiAddr
impl RefUnwindSafe for TwiAddr
impl Send for TwiAddr
impl Sync for TwiAddr
impl Unpin for TwiAddr
impl UnwindSafe for TwiAddr
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