pub enum ChildPage {
NotFetched,
Complete(Vec<NodeSnapshot>),
Truncated {
nodes: Vec<NodeSnapshot>,
continuation: String,
remaining: Option<usize>,
},
}Expand description
Fetched child state for an expanded directory.
Variants§
NotFetched
A collapsed directory fetched no descendants.
Complete(Vec<NodeSnapshot>)
Every child in this page is present.
Truncated
The bounded page ends in a server-issued continuation.
Trait Implementations§
impl Eq for ChildPage
impl StructuralPartialEq for ChildPage
Auto Trait Implementations§
impl Freeze for ChildPage
impl RefUnwindSafe for ChildPage
impl Send for ChildPage
impl Sync for ChildPage
impl Unpin for ChildPage
impl UnsafeUnpin for ChildPage
impl UnwindSafe for ChildPage
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