Enum binascii::ConvertError
source · pub enum ConvertError {
InvalidInputLength,
InvalidOutputLength,
InvalidInput,
}
Expand description
Enum that identifies possible failure in encoding binary or decoding text
Variants§
InvalidInputLength
This error means that the input
buffer’s length is too short or not right (padding)
InvalidOutputLength
The given output
is too short
InvalidInput
Failure to decode due to malformed input
Trait Implementations§
source§impl Debug for ConvertError
impl Debug for ConvertError
source§impl PartialEq<ConvertError> for ConvertError
impl PartialEq<ConvertError> for ConvertError
source§fn eq(&self, other: &ConvertError) -> bool
fn eq(&self, other: &ConvertError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ConvertError
Auto Trait Implementations§
impl RefUnwindSafe for ConvertError
impl Send for ConvertError
impl Sync for ConvertError
impl Unpin for ConvertError
impl UnwindSafe for ConvertError
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