Enum naga::valid::ComposeError
source · pub enum ComposeError {
Type(Handle<Type>),
ComponentCount {
given: u32,
expected: u32,
},
ComponentType {
index: u32,
},
}
Variants§
Trait Implementations§
source§impl Clone for ComposeError
impl Clone for ComposeError
source§fn clone(&self) -> ComposeError
fn clone(&self) -> ComposeError
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 ComposeError
impl Debug for ComposeError
source§impl Display for ComposeError
impl Display for ComposeError
source§impl Error for ComposeError
impl Error for ComposeError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<ComposeError> for ConstExpressionError
impl From<ComposeError> for ConstExpressionError
source§fn from(source: ComposeError) -> Self
fn from(source: ComposeError) -> Self
Converts to this type from the input type.
source§impl From<ComposeError> for ExpressionError
impl From<ComposeError> for ExpressionError
source§fn from(source: ComposeError) -> Self
fn from(source: ComposeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ComposeError
impl RefUnwindSafe for ComposeError
impl Send for ComposeError
impl Sync for ComposeError
impl Unpin for ComposeError
impl UnwindSafe for ComposeError
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