pub enum GetFramebufferError {
AccessDenied,
InfoAddressIsInvalid,
NoFramebufferCreated,
}
Variants§
AccessDenied
The calling task does not have the correct capability to access the framebuffer.
InfoAddressIsInvalid
The address passed in a
to write the info struct into was invalid.
NoFramebufferCreated
The kernel did not create a framebuffer.
Trait Implementations§
source§impl Clone for GetFramebufferError
impl Clone for GetFramebufferError
source§fn clone(&self) -> GetFramebufferError
fn clone(&self) -> GetFramebufferError
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 GetFramebufferError
impl Debug for GetFramebufferError
source§impl Into<usize> for GetFramebufferError
impl Into<usize> for GetFramebufferError
source§impl TryFrom<usize> for GetFramebufferError
impl TryFrom<usize> for GetFramebufferError
impl Copy for GetFramebufferError
Auto Trait Implementations§
impl RefUnwindSafe for GetFramebufferError
impl Send for GetFramebufferError
impl Sync for GetFramebufferError
impl Unpin for GetFramebufferError
impl UnwindSafe for GetFramebufferError
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