#[repr(C)]pub enum EncodeImageError {
EncoderNotAvailable = 0,
InsufficientMemory = 1,
DimensionError = 2,
InvalidData = 3,
Unknown = 4,
}
Variants§
EncoderNotAvailable = 0
Crate was not compiled with the given encoder flags
InsufficientMemory = 1
DimensionError = 2
InvalidData = 3
Unknown = 4
Trait Implementations§
Source§impl Clone for EncodeImageError
impl Clone for EncodeImageError
Source§fn clone(&self) -> EncodeImageError
fn clone(&self) -> EncodeImageError
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 EncodeImageError
impl Debug for EncodeImageError
Source§impl Display for EncodeImageError
impl Display for EncodeImageError
Source§impl Hash for EncodeImageError
impl Hash for EncodeImageError
Source§impl Ord for EncodeImageError
impl Ord for EncodeImageError
Source§fn cmp(&self, other: &EncodeImageError) -> Ordering
fn cmp(&self, other: &EncodeImageError) -> 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 EncodeImageError
impl PartialEq for EncodeImageError
Source§impl PartialOrd for EncodeImageError
impl PartialOrd for EncodeImageError
impl Copy for EncodeImageError
impl Eq for EncodeImageError
impl StructuralPartialEq for EncodeImageError
Auto Trait Implementations§
impl Freeze for EncodeImageError
impl RefUnwindSafe for EncodeImageError
impl Send for EncodeImageError
impl Sync for EncodeImageError
impl Unpin for EncodeImageError
impl UnwindSafe for EncodeImageError
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more