pub enum AddressSize {
_8Bit,
_16Bit,
_24Bit,
_32Bit,
}Expand description
QSPI Address size
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AddressSize
impl Clone for AddressSize
Source§fn clone(&self) -> AddressSize
fn clone(&self) -> AddressSize
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 AddressSize
Source§impl Format for AddressSize
impl Format for AddressSize
Source§impl From<AddressSize> for u8
impl From<AddressSize> for u8
Source§fn from(val: AddressSize) -> Self
fn from(val: AddressSize) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AddressSize
impl RefUnwindSafe for AddressSize
impl Send for AddressSize
impl Sync for AddressSize
impl Unpin for AddressSize
impl UnsafeUnpin for AddressSize
impl UnwindSafe for AddressSize
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