#[non_exhaustive]pub enum FramebufferError {
FramebufferErrorAllocate,
}
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.
FramebufferErrorAllocate
Trait Implementations§
Source§impl Clone for FramebufferError
impl Clone for FramebufferError
Source§fn clone(&self) -> FramebufferError
fn clone(&self) -> FramebufferError
Returns a duplicate 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 FramebufferError
impl Debug for FramebufferError
Source§impl Display for FramebufferError
impl Display for FramebufferError
Source§impl Hash for FramebufferError
impl Hash for FramebufferError
Source§impl Ord for FramebufferError
impl Ord for FramebufferError
Source§fn cmp(&self, other: &FramebufferError) -> Ordering
fn cmp(&self, other: &FramebufferError) -> Ordering
1.21.0 · 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
Source§impl PartialEq for FramebufferError
impl PartialEq for FramebufferError
Source§impl PartialOrd for FramebufferError
impl PartialOrd for FramebufferError
impl Copy for FramebufferError
impl Eq for FramebufferError
impl StructuralPartialEq for FramebufferError
Auto Trait Implementations§
impl Freeze for FramebufferError
impl RefUnwindSafe for FramebufferError
impl Send for FramebufferError
impl Sync for FramebufferError
impl Unpin for FramebufferError
impl UnwindSafe for FramebufferError
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