pub enum BuildRendererError {
NoCanvas,
NoContext,
NoRenderCallback,
}Variants§
Trait Implementations§
Source§impl Clone for BuildRendererError
impl Clone for BuildRendererError
Source§fn clone(&self) -> BuildRendererError
fn clone(&self) -> BuildRendererError
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 BuildRendererError
impl Debug for BuildRendererError
Source§impl Display for BuildRendererError
impl Display for BuildRendererError
Source§impl Error for BuildRendererError
impl Error for BuildRendererError
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<BuildRendererError> for RendererBuilderError
impl From<BuildRendererError> for RendererBuilderError
Source§fn from(source: BuildRendererError) -> Self
fn from(source: BuildRendererError) -> Self
Converts to this type from the input type.
Source§impl Hash for BuildRendererError
impl Hash for BuildRendererError
Source§impl PartialEq for BuildRendererError
impl PartialEq for BuildRendererError
impl Eq for BuildRendererError
impl StructuralPartialEq for BuildRendererError
Auto Trait Implementations§
impl Freeze for BuildRendererError
impl RefUnwindSafe for BuildRendererError
impl Send for BuildRendererError
impl Sync for BuildRendererError
impl Unpin for BuildRendererError
impl UnwindSafe for BuildRendererError
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