#[non_exhaustive]pub enum UtilsError {
Failed,
}
Expand description
The error type.
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.
Failed
Generic failure
Trait Implementations§
source§impl Clone for UtilsError
impl Clone for UtilsError
source§fn clone(&self) -> UtilsError
fn clone(&self) -> UtilsError
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 UtilsError
impl Debug for UtilsError
source§impl ErrorDomain for UtilsError
impl ErrorDomain for UtilsError
source§impl From<UtilsError> for Value
impl From<UtilsError> for Value
source§fn from(v: UtilsError) -> Self
fn from(v: UtilsError) -> Self
Converts to this type from the input type.
source§impl<'a> FromValue<'a> for UtilsError
impl<'a> FromValue<'a> for UtilsError
source§type Checker = GenericValueTypeChecker<UtilsError>
type Checker = GenericValueTypeChecker<UtilsError>
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 UtilsError
impl HasParamSpec for UtilsError
type ParamSpec = ParamSpecEnum
source§type SetValue = UtilsError
type SetValue = UtilsError
Preferred value to be used as setter for the associated ParamSpec.
type BuilderFn = fn(_: &str, _: UtilsError) -> ParamSpecEnumBuilder<'_, UtilsError>
fn param_spec_builder() -> Self::BuilderFn
source§impl Hash for UtilsError
impl Hash for UtilsError
source§impl Ord for UtilsError
impl Ord for UtilsError
source§fn cmp(&self, other: &UtilsError) -> Ordering
fn cmp(&self, other: &UtilsError) -> 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 UtilsError
impl PartialEq for UtilsError
source§impl PartialOrd for UtilsError
impl PartialOrd for UtilsError
source§impl StaticType for UtilsError
impl StaticType for UtilsError
source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.source§impl ToValue for UtilsError
impl ToValue for UtilsError
source§impl ValueType for UtilsError
impl ValueType for UtilsError
source§type Type = UtilsError
type Type = UtilsError
Type to get the
Type
from. Read moreimpl Copy for UtilsError
impl Eq for UtilsError
impl StructuralPartialEq for UtilsError
Auto Trait Implementations§
impl Freeze for UtilsError
impl RefUnwindSafe for UtilsError
impl Send for UtilsError
impl Sync for UtilsError
impl Unpin for UtilsError
impl UnwindSafe for UtilsError
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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
.