pub struct DirectoryPage {
pub entries: Vec<DirectoryEntry>,
}Expand description
A single page of directory entries. V1 uses one page per directory.
Fields§
§entries: Vec<DirectoryEntry>Implementations§
Source§impl DirectoryPage
impl DirectoryPage
Trait Implementations§
Source§impl Clone for DirectoryPage
impl Clone for DirectoryPage
Source§fn clone(&self) -> DirectoryPage
fn clone(&self) -> DirectoryPage
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 Debug for DirectoryPage
impl Debug for DirectoryPage
Source§impl<'de> Deserialize<'de> for DirectoryPage
impl<'de> Deserialize<'de> for DirectoryPage
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DirectoryPage
impl RefUnwindSafe for DirectoryPage
impl Send for DirectoryPage
impl Sync for DirectoryPage
impl Unpin for DirectoryPage
impl UnsafeUnpin for DirectoryPage
impl UnwindSafe for DirectoryPage
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