pub struct ListPathEntriesOptions {
pub include_attributes: bool,
}Expand description
Options for listing a directory.
Fields§
§include_attributes: boolProject each entry’s attribute map and its revision onto the answer.
Defaults to off, and that default is what bounds a listing: a page holds up to 1,000 entries and each attribute map may be 64 KiB, so an always-on projection would put a 64 MiB response behind a request that declares no byte budget anywhere. A caller that wants attributes for a whole directory asks for them, and pages accordingly.
Trait Implementations§
Source§impl Clone for ListPathEntriesOptions
impl Clone for ListPathEntriesOptions
Source§fn clone(&self) -> ListPathEntriesOptions
fn clone(&self) -> ListPathEntriesOptions
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 moreSource§impl Debug for ListPathEntriesOptions
impl Debug for ListPathEntriesOptions
Source§impl Default for ListPathEntriesOptions
impl Default for ListPathEntriesOptions
Source§fn default() -> ListPathEntriesOptions
fn default() -> ListPathEntriesOptions
Returns the “default value” for a type. Read more
impl Eq for ListPathEntriesOptions
Source§impl PartialEq for ListPathEntriesOptions
impl PartialEq for ListPathEntriesOptions
impl StructuralPartialEq for ListPathEntriesOptions
Auto Trait Implementations§
impl Freeze for ListPathEntriesOptions
impl RefUnwindSafe for ListPathEntriesOptions
impl Send for ListPathEntriesOptions
impl Sync for ListPathEntriesOptions
impl Unpin for ListPathEntriesOptions
impl UnsafeUnpin for ListPathEntriesOptions
impl UnwindSafe for ListPathEntriesOptions
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