#[non_exhaustive]pub enum ImageError {
Data,
}
Expand description
Error enumeration for Image
.
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.
Data
Invalid data passed to the
ImageExt::set_data
function.
Trait Implementations§
Source§impl Clone for ImageError
impl Clone for ImageError
Source§fn clone(&self) -> ImageError
fn clone(&self) -> ImageError
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 ImageError
impl Debug for ImageError
Source§impl Display for ImageError
impl Display for ImageError
Source§impl ErrorDomain for ImageError
impl ErrorDomain for ImageError
Source§impl<'a> FromValue<'a> for ImageError
impl<'a> FromValue<'a> for ImageError
Source§unsafe fn from_value(value: &Value) -> Self
unsafe fn from_value(value: &Value) -> Self
Safety Read more
Source§impl<'a> FromValueOptional<'a> for ImageError
impl<'a> FromValueOptional<'a> for ImageError
Source§impl Hash for ImageError
impl Hash for ImageError
Source§impl Ord for ImageError
impl Ord for ImageError
Source§fn cmp(&self, other: &ImageError) -> Ordering
fn cmp(&self, other: &ImageError) -> 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 ImageError
impl PartialEq for ImageError
Source§impl PartialOrd for ImageError
impl PartialOrd for ImageError
Source§impl SetValue for ImageError
impl SetValue for ImageError
Source§impl StaticType for ImageError
impl StaticType for ImageError
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.impl Copy for ImageError
impl Eq for ImageError
impl StructuralPartialEq for ImageError
Auto Trait Implementations§
impl Freeze for ImageError
impl RefUnwindSafe for ImageError
impl Send for ImageError
impl Sync for ImageError
impl Unpin for ImageError
impl UnwindSafe for ImageError
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
.