pub struct StatusMemory {
pub size: Option<u16>,
pub write_protection: bool,
}
Expand description
Memory status.
Fields§
§size: Option<u16>
Size of program memory in bytes (if available).
write_protection: bool
Whether the program memory is write protected.
Implementations§
source§impl StatusMemory
impl StatusMemory
sourcepub const fn parse(byte: u8) -> Result<Self, StatusParseError>
pub const fn parse(byte: u8) -> Result<Self, StatusParseError>
Parse the memory status from a byte obtained using a StatusRead
command.
Trait Implementations§
source§impl Clone for StatusMemory
impl Clone for StatusMemory
source§fn clone(&self) -> StatusMemory
fn clone(&self) -> StatusMemory
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 StatusMemory
impl Debug for StatusMemory
source§impl Hash for StatusMemory
impl Hash for StatusMemory
source§impl Ord for StatusMemory
impl Ord for StatusMemory
source§fn cmp(&self, other: &StatusMemory) -> Ordering
fn cmp(&self, other: &StatusMemory) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for StatusMemory
impl PartialEq for StatusMemory
source§fn eq(&self, other: &StatusMemory) -> bool
fn eq(&self, other: &StatusMemory) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for StatusMemory
impl PartialOrd for StatusMemory
source§fn partial_cmp(&self, other: &StatusMemory) -> Option<Ordering>
fn partial_cmp(&self, other: &StatusMemory) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for StatusMemory
impl Eq for StatusMemory
impl StructuralPartialEq for StatusMemory
Auto Trait Implementations§
impl Freeze for StatusMemory
impl RefUnwindSafe for StatusMemory
impl Send for StatusMemory
impl Sync for StatusMemory
impl Unpin for StatusMemory
impl UnwindSafe for StatusMemory
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