Enum naga::valid::LiteralError
source · pub enum LiteralError {
NaN,
Infinity,
Width(WidthError),
}
Variants§
Trait Implementations§
source§impl Clone for LiteralError
impl Clone for LiteralError
source§fn clone(&self) -> LiteralError
fn clone(&self) -> LiteralError
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 LiteralError
impl Debug for LiteralError
source§impl Display for LiteralError
impl Display for LiteralError
source§impl Error for LiteralError
impl Error for LiteralError
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<LiteralError> for ConstExpressionError
impl From<LiteralError> for ConstExpressionError
source§fn from(source: LiteralError) -> Self
fn from(source: LiteralError) -> Self
Converts to this type from the input type.
source§impl From<LiteralError> for ConstantEvaluatorError
impl From<LiteralError> for ConstantEvaluatorError
source§fn from(source: LiteralError) -> Self
fn from(source: LiteralError) -> Self
Converts to this type from the input type.
source§impl From<LiteralError> for ExpressionError
impl From<LiteralError> for ExpressionError
source§fn from(source: LiteralError) -> Self
fn from(source: LiteralError) -> Self
Converts to this type from the input type.
source§impl From<WidthError> for LiteralError
impl From<WidthError> for LiteralError
source§fn from(source: WidthError) -> Self
fn from(source: WidthError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LiteralError
impl RefUnwindSafe for LiteralError
impl Send for LiteralError
impl Sync for LiteralError
impl Unpin for LiteralError
impl UnwindSafe for LiteralError
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