pub enum CodeToTextError {
FinalInvalid(String, u16),
CantDecodeUtf16(FromUtf16Error, String, u16, u16),
FinalNotLongEnoughtForData,
}Expand description
An error that may occur while decoding a binary with CodeToText::decode
Variants§
FinalInvalid(String, u16)
CantDecodeUtf16(FromUtf16Error, String, u16, u16)
FinalNotLongEnoughtForData
Trait Implementations§
Source§impl Debug for CodeToTextError
impl Debug for CodeToTextError
Source§impl Display for CodeToTextError
impl Display for CodeToTextError
Source§impl Error for CodeToTextError
impl Error for CodeToTextError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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()
Auto Trait Implementations§
impl Freeze for CodeToTextError
impl RefUnwindSafe for CodeToTextError
impl Send for CodeToTextError
impl Sync for CodeToTextError
impl Unpin for CodeToTextError
impl UnwindSafe for CodeToTextError
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