pub struct FileFolder { /* private fields */ }Expand description
A directory on the local filesystem.
Implementations§
Trait Implementations§
Source§impl ContentFolder for FileFolder
impl ContentFolder for FileFolder
Source§fn metadata(&self) -> ContentMetadata
fn metadata(&self) -> ContentMetadata
What the provider states about this folder.
Source§fn entries(&self) -> ContentFuture<'_, Result<Vec<ContentEntry>, ContentError>>
fn entries(&self) -> ContentFuture<'_, Result<Vec<ContentEntry>, ContentError>>
The immediate children.
Source§fn stream_files(&self) -> Option<ContentStreamRef>
fn stream_files(&self) -> Option<ContentStreamRef>
A provider-native stream over every file in the tree, when the provider
discovers files incrementally. Providers that enumerate eagerly return
None and folder_files walks them instead.Auto Trait Implementations§
impl Freeze for FileFolder
impl RefUnwindSafe for FileFolder
impl Send for FileFolder
impl Sync for FileFolder
impl Unpin for FileFolder
impl UnsafeUnpin for FileFolder
impl UnwindSafe for FileFolder
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