Struct glib::variant::VariantTypeMismatchError
source · [−]pub struct VariantTypeMismatchError {
pub actual: VariantType,
pub expected: VariantType,
}
Expand description
Fields
actual: VariantType
expected: VariantType
Implementations
sourceimpl VariantTypeMismatchError
impl VariantTypeMismatchError
pub fn new(actual: VariantType, expected: VariantType) -> Self
Trait Implementations
sourceimpl Clone for VariantTypeMismatchError
impl Clone for VariantTypeMismatchError
sourcefn clone(&self) -> VariantTypeMismatchError
fn clone(&self) -> VariantTypeMismatchError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for VariantTypeMismatchError
impl Debug for VariantTypeMismatchError
sourceimpl Display for VariantTypeMismatchError
impl Display for VariantTypeMismatchError
sourceimpl Error for VariantTypeMismatchError
impl Error for VariantTypeMismatchError
1.30.0 · sourcefn 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 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl PartialEq<VariantTypeMismatchError> for VariantTypeMismatchError
impl PartialEq<VariantTypeMismatchError> for VariantTypeMismatchError
sourcefn eq(&self, other: &VariantTypeMismatchError) -> bool
fn eq(&self, other: &VariantTypeMismatchError) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Eq for VariantTypeMismatchError
impl StructuralEq for VariantTypeMismatchError
impl StructuralPartialEq for VariantTypeMismatchError
Auto Trait Implementations
impl RefUnwindSafe for VariantTypeMismatchError
impl Send for VariantTypeMismatchError
impl Sync for VariantTypeMismatchError
impl Unpin for VariantTypeMismatchError
impl UnwindSafe for VariantTypeMismatchError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more