pub enum GlShaderCompileError {
Vertex(VertexShaderCompileError),
Fragment(FragmentShaderCompileError),
}
Variants§
Vertex(VertexShaderCompileError)
Fragment(FragmentShaderCompileError)
Trait Implementations§
Source§impl Clone for GlShaderCompileError
impl Clone for GlShaderCompileError
Source§fn clone(&self) -> GlShaderCompileError
fn clone(&self) -> GlShaderCompileError
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 GlShaderCompileError
impl Debug for GlShaderCompileError
Source§impl Display for GlShaderCompileError
impl Display for GlShaderCompileError
Source§impl Hash for GlShaderCompileError
impl Hash for GlShaderCompileError
Source§impl Ord for GlShaderCompileError
impl Ord for GlShaderCompileError
Source§fn cmp(&self, other: &GlShaderCompileError) -> Ordering
fn cmp(&self, other: &GlShaderCompileError) -> 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 GlShaderCompileError
impl PartialEq for GlShaderCompileError
Source§impl PartialOrd for GlShaderCompileError
impl PartialOrd for GlShaderCompileError
impl Eq for GlShaderCompileError
impl StructuralPartialEq for GlShaderCompileError
Auto Trait Implementations§
impl Freeze for GlShaderCompileError
impl RefUnwindSafe for GlShaderCompileError
impl Send for GlShaderCompileError
impl Sync for GlShaderCompileError
impl Unpin for GlShaderCompileError
impl UnwindSafe for GlShaderCompileError
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