pub enum CreateFramebufferError {
NoContext,
}Variants§
NoContext
Trait Implementations§
Source§impl Clone for CreateFramebufferError
impl Clone for CreateFramebufferError
Source§fn clone(&self) -> CreateFramebufferError
fn clone(&self) -> CreateFramebufferError
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 CreateFramebufferError
impl Debug for CreateFramebufferError
Source§impl Display for CreateFramebufferError
impl Display for CreateFramebufferError
Source§impl Error for CreateFramebufferError
impl Error for CreateFramebufferError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<CreateFramebufferError> for RendererBuilderError
impl From<CreateFramebufferError> for RendererBuilderError
Source§fn from(source: CreateFramebufferError) -> Self
fn from(source: CreateFramebufferError) -> Self
Converts to this type from the input type.
Source§impl Hash for CreateFramebufferError
impl Hash for CreateFramebufferError
Source§impl PartialEq for CreateFramebufferError
impl PartialEq for CreateFramebufferError
impl Eq for CreateFramebufferError
impl StructuralPartialEq for CreateFramebufferError
Auto Trait Implementations§
impl Freeze for CreateFramebufferError
impl RefUnwindSafe for CreateFramebufferError
impl Send for CreateFramebufferError
impl Sync for CreateFramebufferError
impl Unpin for CreateFramebufferError
impl UnwindSafe for CreateFramebufferError
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