Enum stm32_metapac::dma2d::vals::Mode
#[repr(u8)]pub enum Mode {
MEMORYTOMEMORY = 0,
MEMORYTOMEMORYPFC = 1,
MEMORYTOMEMORYPFCBLENDING = 2,
REGISTERTOMEMORY = 3,
}
Variants§
MEMORYTOMEMORY = 0
Memory-to-memory (FG fetch only)
MEMORYTOMEMORYPFC = 1
Memory-to-memory with PFC (FG fetch only with FG PFC active)
MEMORYTOMEMORYPFCBLENDING = 2
Memory-to-memory with blending (FG and BG fetch with PFC and blending)
REGISTERTOMEMORY = 3
Register-to-memory
Implementations§
Trait Implementations§
§impl Ord for Mode
impl Ord for Mode
§impl PartialOrd for Mode
impl PartialOrd for Mode
§fn partial_cmp(&self, other: &Mode) -> Option<Ordering>
fn partial_cmp(&self, other: &Mode) -> 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 Mode
impl Eq for Mode
impl StructuralEq for Mode
impl StructuralPartialEq for Mode
Auto Trait Implementations§
impl RefUnwindSafe for Mode
impl Send for Mode
impl Sync for Mode
impl Unpin for Mode
impl UnwindSafe for Mode
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