pub struct TreePage {
pub entries: Vec<TreeEntry>,
pub resume_cursor: TreeResumeCursor,
}Expand description
One bounded page of decoded entries plus the cursor after the last entry.
Fields§
§entries: Vec<TreeEntry>§resume_cursor: TreeResumeCursorTrait Implementations§
impl Eq for TreePage
impl StructuralPartialEq for TreePage
Auto Trait Implementations§
impl Freeze for TreePage
impl RefUnwindSafe for TreePage
impl Send for TreePage
impl Sync for TreePage
impl Unpin for TreePage
impl UnsafeUnpin for TreePage
impl UnwindSafe for TreePage
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