pub enum TimestampError {
IncorrectPrefixBits {
expected: u8,
actual: u8,
},
MarkerBitNotSet {
bit_number: u8,
},
}
Expand description
Detail about the formatting problem which prevented a Timestamp
value being parsed.
Variants§
IncorrectPrefixBits
Parsing the timestamp failed because the ‘prefix-bit’ values within the timestamp did not have the expected values
Fields
MarkerBitNotSet
Parsing the timestamp failed because a ‘marker-bit’ value within the timestamp did not have the expected value
Trait Implementations§
Source§impl Debug for TimestampError
impl Debug for TimestampError
Source§impl PartialEq for TimestampError
impl PartialEq for TimestampError
impl Eq for TimestampError
impl StructuralPartialEq for TimestampError
Auto Trait Implementations§
impl Freeze for TimestampError
impl RefUnwindSafe for TimestampError
impl Send for TimestampError
impl Sync for TimestampError
impl Unpin for TimestampError
impl UnwindSafe for TimestampError
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