pub struct ListOptions {
pub recursive: bool,
pub follow_symlinks: bool,
pub include_metadata: bool,
pub page_size: Option<usize>,
pub prefix: Option<String>,
}Expand description
Options controlling directory or prefix listing.
Fields§
§recursive: boolWhether listing should recurse into child containers.
follow_symlinks: boolWhether symbolic links should be followed.
include_metadata: boolWhether entries should include metadata when available.
page_size: Option<usize>Optional provider page size hint.
prefix: Option<String>Optional lexical prefix filter.
Trait Implementations§
Source§impl Clone for ListOptions
impl Clone for ListOptions
Source§fn clone(&self) -> ListOptions
fn clone(&self) -> ListOptions
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 ListOptions
impl Debug for ListOptions
Source§impl Default for ListOptions
impl Default for ListOptions
Source§fn default() -> ListOptions
fn default() -> ListOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListOptions
impl PartialEq for ListOptions
Source§fn eq(&self, other: &ListOptions) -> bool
fn eq(&self, other: &ListOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ListOptions
impl StructuralPartialEq for ListOptions
Auto Trait Implementations§
impl Freeze for ListOptions
impl RefUnwindSafe for ListOptions
impl Send for ListOptions
impl Sync for ListOptions
impl Unpin for ListOptions
impl UnsafeUnpin for ListOptions
impl UnwindSafe for ListOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoValueDefault<T> for T
impl<T> IntoValueDefault<T> for T
Source§fn into_value_default(self) -> T
fn into_value_default(self) -> T
Converts this argument into the default value.