Enum embassy_stm32::sdmmc::Signalling
source · #[non_exhaustive]pub enum Signalling {
SDR12,
SDR25,
SDR50,
SDR104,
DDR50,
}
Expand description
The signalling scheme used on the SDMMC bus
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
source§impl Clone for Signalling
impl Clone for Signalling
source§fn clone(&self) -> Signalling
fn clone(&self) -> Signalling
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 Signalling
impl Debug for Signalling
source§impl Default for Signalling
impl Default for Signalling
source§impl Format for Signalling
impl Format for Signalling
source§impl PartialEq for Signalling
impl PartialEq for Signalling
source§fn eq(&self, other: &Signalling) -> bool
fn eq(&self, other: &Signalling) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for Signalling
impl Eq for Signalling
impl StructuralEq for Signalling
impl StructuralPartialEq for Signalling
Auto Trait Implementations§
impl RefUnwindSafe for Signalling
impl Send for Signalling
impl Sync for Signalling
impl Unpin for Signalling
impl UnwindSafe for Signalling
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