Enum jpeg_encoder::EncodingError
source · pub enum EncodingError {
InvalidAppSegment(u8),
AppSegmentTooLarge(usize),
IccTooLarge(usize),
BadImageData {
length: usize,
required: usize,
},
ZeroImageDimensions {
width: u16,
height: u16,
},
IoError(Error),
Write(String),
}
Expand description
Variants§
InvalidAppSegment(u8)
An invalid app segment number has been used
AppSegmentTooLarge(usize)
App segment exceeds maximum allowed data length
IccTooLarge(usize)
Color profile exceeds maximum allowed data length
BadImageData
Image data is too short
ZeroImageDimensions
Width or height is zero
IoError(Error)
An io error occurred during writing
Write(String)
An io error occurred during writing (Should be used in no_std cases instead of IoError)
Trait Implementations§
source§impl Debug for EncodingError
impl Debug for EncodingError
source§impl Display for EncodingError
impl Display for EncodingError
source§impl Error for EncodingError
impl Error for EncodingError
source§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<Error> for EncodingError
impl From<Error> for EncodingError
source§fn from(err: Error) -> EncodingError
fn from(err: Error) -> EncodingError
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for EncodingError
impl Send for EncodingError
impl Sync for EncodingError
impl Unpin for EncodingError
impl !UnwindSafe for EncodingError
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