#[non_exhaustive]#[repr(u64)]pub enum GraphicsCommand {
TakeOwnership = 0,
ReleaseOwnership = 1,
GetFrameBufferInfo = 2,
Blit = 3,
}
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.
TakeOwnership = 0
Take ownership of the graphics device No arguments
ReleaseOwnership = 1
Release ownership of the graphics device No arguments
GetFrameBufferInfo = 2
Get information about the framebuffer &mut FrameBufferInfo
Blit = 3
Blit a region from userspace memory into the graphics framebuffer (must have ownership of the graphics device) &BlitCommand
Implementations§
Trait Implementations§
source§impl Clone for GraphicsCommand
impl Clone for GraphicsCommand
source§fn clone(&self) -> GraphicsCommand
fn clone(&self) -> GraphicsCommand
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 GraphicsCommand
impl Debug for GraphicsCommand
impl Copy for GraphicsCommand
Auto Trait Implementations§
impl RefUnwindSafe for GraphicsCommand
impl Send for GraphicsCommand
impl Sync for GraphicsCommand
impl Unpin for GraphicsCommand
impl UnwindSafe for GraphicsCommand
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