pub struct NextRecord<E>where
E: Encode,{
pub record: E,
pub page: Page,
pub offset: PageOffset,
}Expand description
Represents the next record read by the TableReader.
Fields§
§record: E§page: Page§offset: PageOffsetTrait Implementations§
Source§impl<E> Clone for NextRecord<E>
impl<E> Clone for NextRecord<E>
Source§fn clone(&self) -> NextRecord<E>
fn clone(&self) -> NextRecord<E>
Returns a duplicate 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<E> Debug for NextRecord<E>
impl<E> Debug for NextRecord<E>
Source§impl<E> PartialEq for NextRecord<E>
impl<E> PartialEq for NextRecord<E>
impl<E> Copy for NextRecord<E>
impl<E> Eq for NextRecord<E>
impl<E> StructuralPartialEq for NextRecord<E>where
E: Encode,
Auto Trait Implementations§
impl<E> Freeze for NextRecord<E>where
E: Freeze,
impl<E> RefUnwindSafe for NextRecord<E>where
E: RefUnwindSafe,
impl<E> Send for NextRecord<E>where
E: Send,
impl<E> Sync for NextRecord<E>where
E: Sync,
impl<E> Unpin for NextRecord<E>where
E: Unpin,
impl<E> UnsafeUnpin for NextRecord<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for NextRecord<E>where
E: UnwindSafe,
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