pub enum ShaderParseError {
TooShort,
BadVersion(u32),
Truncated {
offset: usize,
need: usize,
len: usize,
},
MissingEnd,
}Variants§
Trait Implementations§
Source§impl Clone for ShaderParseError
impl Clone for ShaderParseError
Source§fn clone(&self) -> ShaderParseError
fn clone(&self) -> ShaderParseError
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 ShaderParseError
impl Debug for ShaderParseError
Source§impl Display for ShaderParseError
impl Display for ShaderParseError
Source§impl Error for ShaderParseError
impl Error for ShaderParseError
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()
Auto Trait Implementations§
impl Freeze for ShaderParseError
impl RefUnwindSafe for ShaderParseError
impl Send for ShaderParseError
impl Sync for ShaderParseError
impl Unpin for ShaderParseError
impl UnsafeUnpin for ShaderParseError
impl UnwindSafe for ShaderParseError
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