pub enum RecordIndexError {
InvalidBoundaries,
ArithmeticOverflow,
RecordGone {
first_record: u64,
next_record: u64,
},
RecordBeyondTail {
next_record: u64,
},
OffsetNotRecordBoundary,
}Variants§
Trait Implementations§
Source§impl Clone for RecordIndexError
impl Clone for RecordIndexError
Source§fn clone(&self) -> RecordIndexError
fn clone(&self) -> RecordIndexError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RecordIndexError
Source§impl Debug for RecordIndexError
impl Debug for RecordIndexError
impl Eq for RecordIndexError
Source§impl PartialEq for RecordIndexError
impl PartialEq for RecordIndexError
impl StructuralPartialEq for RecordIndexError
Auto Trait Implementations§
impl Freeze for RecordIndexError
impl RefUnwindSafe for RecordIndexError
impl Send for RecordIndexError
impl Sync for RecordIndexError
impl Unpin for RecordIndexError
impl UnsafeUnpin for RecordIndexError
impl UnwindSafe for RecordIndexError
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