Enum 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 Copy for Mode
impl Eq for Mode
§impl Ord for Mode
impl Ord for Mode
1.21.0 (const: unstable) · 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
§impl PartialOrd for Mode
impl PartialOrd for Mode
impl StructuralPartialEq for Mode
Auto Trait Implementations§
impl Freeze for Mode
impl RefUnwindSafe for Mode
impl Send for Mode
impl Sync for Mode
impl Unpin for Mode
impl UnsafeUnpin 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