pub enum TryFromU64U16TupleError {
CompressedPositionOverflow,
}
Expand description
An error returned when converting a (u64, u16) to a virtual position fails.
Variants§
CompressedPositionOverflow
The compressed position is larger than 2^48 - 1.
Trait Implementations§
source§impl Clone for TryFromU64U16TupleError
impl Clone for TryFromU64U16TupleError
source§fn clone(&self) -> TryFromU64U16TupleError
fn clone(&self) -> TryFromU64U16TupleError
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 TryFromU64U16TupleError
impl Debug for TryFromU64U16TupleError
source§impl Display for TryFromU64U16TupleError
impl Display for TryFromU64U16TupleError
source§impl Error for TryFromU64U16TupleError
impl Error for TryFromU64U16TupleError
1.30.0 · 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 PartialEq for TryFromU64U16TupleError
impl PartialEq for TryFromU64U16TupleError
source§fn eq(&self, other: &TryFromU64U16TupleError) -> bool
fn eq(&self, other: &TryFromU64U16TupleError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for TryFromU64U16TupleError
impl StructuralPartialEq for TryFromU64U16TupleError
Auto Trait Implementations§
impl Freeze for TryFromU64U16TupleError
impl RefUnwindSafe for TryFromU64U16TupleError
impl Send for TryFromU64U16TupleError
impl Sync for TryFromU64U16TupleError
impl Unpin for TryFromU64U16TupleError
impl UnwindSafe for TryFromU64U16TupleError
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