#[non_exhaustive]pub enum BlendStringError {
ParseError,
ArgumentParseError,
InvalidError,
GpuUnsupportedError,
}
Expand description
Error enumeration for the blend strings parser
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ParseError
Generic parse error
ArgumentParseError
Argument parse error
InvalidError
Internal parser error
GpuUnsupportedError
Blend string not supported by the GPU
Trait Implementations§
Source§impl Clone for BlendStringError
impl Clone for BlendStringError
Source§fn clone(&self) -> BlendStringError
fn clone(&self) -> BlendStringError
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 BlendStringError
impl Debug for BlendStringError
Source§impl Display for BlendStringError
impl Display for BlendStringError
Source§impl ErrorDomain for BlendStringError
impl ErrorDomain for BlendStringError
Source§impl<'a> FromValue<'a> for BlendStringError
impl<'a> FromValue<'a> for BlendStringError
Source§unsafe fn from_value(value: &Value) -> Self
unsafe fn from_value(value: &Value) -> Self
Safety Read more
Source§impl<'a> FromValueOptional<'a> for BlendStringError
impl<'a> FromValueOptional<'a> for BlendStringError
Source§impl Hash for BlendStringError
impl Hash for BlendStringError
Source§impl Ord for BlendStringError
impl Ord for BlendStringError
Source§fn cmp(&self, other: &BlendStringError) -> Ordering
fn cmp(&self, other: &BlendStringError) -> 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 BlendStringError
impl PartialEq for BlendStringError
Source§impl PartialOrd for BlendStringError
impl PartialOrd for BlendStringError
Source§impl SetValue for BlendStringError
impl SetValue for BlendStringError
Source§impl StaticType for BlendStringError
impl StaticType for BlendStringError
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.impl Copy for BlendStringError
impl Eq for BlendStringError
impl StructuralPartialEq for BlendStringError
Auto Trait Implementations§
impl Freeze for BlendStringError
impl RefUnwindSafe for BlendStringError
impl Send for BlendStringError
impl Sync for BlendStringError
impl Unpin for BlendStringError
impl UnwindSafe for BlendStringError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.