pub enum PixbufError {
CorruptImage,
InsufficientMemory,
BadOption,
UnknownType,
UnsupportedOperation,
Failed,
IncompleteAnimation,
// some variants omitted
}
Variants§
CorruptImage
InsufficientMemory
BadOption
UnknownType
UnsupportedOperation
Failed
IncompleteAnimation
Trait Implementations§
Source§impl Clone for PixbufError
impl Clone for PixbufError
Source§fn clone(&self) -> PixbufError
fn clone(&self) -> PixbufError
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 PixbufError
impl Debug for PixbufError
Source§impl Display for PixbufError
impl Display for PixbufError
Source§impl ErrorDomain for PixbufError
impl ErrorDomain for PixbufError
Source§impl<'a> FromValue<'a> for PixbufError
impl<'a> FromValue<'a> for PixbufError
unsafe fn from_value(value: &Value) -> Self
Source§impl<'a> FromValueOptional<'a> for PixbufError
impl<'a> FromValueOptional<'a> for PixbufError
unsafe fn from_value_optional(value: &Value) -> Option<Self>
Source§impl Hash for PixbufError
impl Hash for PixbufError
Source§impl Ord for PixbufError
impl Ord for PixbufError
Source§fn cmp(&self, other: &PixbufError) -> Ordering
fn cmp(&self, other: &PixbufError) -> 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 PixbufError
impl PartialEq for PixbufError
Source§impl PartialOrd for PixbufError
impl PartialOrd for PixbufError
Source§impl StaticType for PixbufError
impl StaticType for PixbufError
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.impl Copy for PixbufError
impl Eq for PixbufError
impl StructuralPartialEq for PixbufError
Auto Trait Implementations§
impl Freeze for PixbufError
impl RefUnwindSafe for PixbufError
impl Send for PixbufError
impl Sync for PixbufError
impl Unpin for PixbufError
impl UnwindSafe for PixbufError
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
.