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