pub struct ByteSequenceTooLongError { /* private fields */ }
Expand description
Error that indicates a InvalidUtf8ByteSequence
could not be constructed
because the byte sequence contained more than three bytes.
This crate decodes conventionally UTF-8 binary strings with the “substitution of maximal subparts” strategy, which at most will return invalid byte sequences with length 3.
This error is fatal and indicates a bug in a library this crate depends on.
Implementations§
Trait Implementations§
Source§impl Clone for ByteSequenceTooLongError
impl Clone for ByteSequenceTooLongError
Source§fn clone(&self) -> ByteSequenceTooLongError
fn clone(&self) -> ByteSequenceTooLongError
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 ByteSequenceTooLongError
impl Debug for ByteSequenceTooLongError
Source§impl Default for ByteSequenceTooLongError
impl Default for ByteSequenceTooLongError
Source§fn default() -> ByteSequenceTooLongError
fn default() -> ByteSequenceTooLongError
Returns the “default value” for a type. Read more
Source§impl Display for ByteSequenceTooLongError
impl Display for ByteSequenceTooLongError
Source§impl Error for ByteSequenceTooLongError
impl Error for ByteSequenceTooLongError
1.30.0 · 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()
Source§impl Hash for ByteSequenceTooLongError
impl Hash for ByteSequenceTooLongError
Source§impl Ord for ByteSequenceTooLongError
impl Ord for ByteSequenceTooLongError
Source§fn cmp(&self, other: &ByteSequenceTooLongError) -> Ordering
fn cmp(&self, other: &ByteSequenceTooLongError) -> 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 ByteSequenceTooLongError
impl PartialEq for ByteSequenceTooLongError
Source§impl PartialOrd for ByteSequenceTooLongError
impl PartialOrd for ByteSequenceTooLongError
impl Copy for ByteSequenceTooLongError
impl Eq for ByteSequenceTooLongError
impl StructuralPartialEq for ByteSequenceTooLongError
Auto Trait Implementations§
impl Freeze for ByteSequenceTooLongError
impl RefUnwindSafe for ByteSequenceTooLongError
impl Send for ByteSequenceTooLongError
impl Sync for ByteSequenceTooLongError
impl Unpin for ByteSequenceTooLongError
impl UnwindSafe for ByteSequenceTooLongError
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