#[non_exhaustive]pub enum SvgError {
InvalidSyntax,
InvalidElement,
InvalidAttribute,
MissingAttribute,
InvalidReference,
FailedUpdate,
FailedRendering,
}Available on crate feature
v4_22 only.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.
InvalidSyntax
InvalidElement
InvalidAttribute
MissingAttribute
InvalidReference
FailedUpdate
FailedRendering
Implementations§
Trait Implementations§
Source§impl ErrorDomain for SvgError
impl ErrorDomain for SvgError
Source§impl<'a> FromValue<'a> for SvgError
impl<'a> FromValue<'a> for SvgError
Source§type Checker = GenericValueTypeChecker<SvgError>
type Checker = GenericValueTypeChecker<SvgError>
Value type checker.
Source§unsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Get the contained value from a
Value. Read moreSource§impl HasParamSpec for SvgError
impl HasParamSpec for SvgError
Source§impl Ord for SvgError
impl Ord for SvgError
Source§impl PartialOrd for SvgError
impl PartialOrd for SvgError
Source§impl StaticType for SvgError
impl StaticType for SvgError
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self.impl Copy for SvgError
impl Eq for SvgError
impl StructuralPartialEq for SvgError
Auto Trait Implementations§
impl Freeze for SvgError
impl RefUnwindSafe for SvgError
impl Send for SvgError
impl Sync for SvgError
impl Unpin for SvgError
impl UnsafeUnpin for SvgError
impl UnwindSafe for SvgError
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> IntoClosureReturnValue for T
impl<T> IntoClosureReturnValue for T
fn into_closure_return_value(self) -> Option<Value>
Source§impl<T> PropertyGet for Twhere
T: HasParamSpec,
impl<T> PropertyGet for Twhere
T: HasParamSpec,
Source§impl<T> StaticTypeExt for Twhere
T: StaticType,
impl<T> StaticTypeExt for Twhere
T: StaticType,
Source§fn ensure_type()
fn ensure_type()
Ensures that the type has been registered with the type system.
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.