pub struct LocalPath<'a> { /* private fields */ }Expand description
A local storage path.
Implementations§
Source§impl<'a> LocalPath<'a>
Delete
impl<'a> LocalPath<'a>
Delete
Sourcepub fn delete_if_exists(&self) -> Result<bool, Error>
pub fn delete_if_exists(&self) -> Result<bool, Error>
See FilePath::delete_if_exists.
Source§impl<'a> LocalPath<'a>
Read
impl<'a> LocalPath<'a>
Read
Sourcepub fn read_if_exists(&self) -> Result<Option<LocalReadOp>, Error>
pub fn read_if_exists(&self) -> Result<Option<LocalReadOp>, Error>
See FilePath::read_if_exists.
Source§impl<'a> LocalPath<'a>
Write
impl<'a> LocalPath<'a>
Write
Sourcepub fn write_if_not_exists(&self) -> Result<Option<LocalWriteOp>, Error>
pub fn write_if_not_exists(&self) -> Result<Option<LocalWriteOp>, Error>
See FilePath::write_if_not_exists.
Source§impl<'a> LocalPath<'a>
List Files
impl<'a> LocalPath<'a>
List Files
Sourcepub fn list_files(&self) -> Result<LocalListFilesOp, Error>
pub fn list_files(&self) -> Result<LocalListFilesOp, Error>
See FolderPath::list_files.
Sourcepub fn list_files_unsorted(&self) -> Result<LocalListFilesOp, Error>
pub fn list_files_unsorted(&self) -> Result<LocalListFilesOp, Error>
See FolderPath::list_files_unsorted.
Trait Implementations§
Source§impl<'a> Ord for LocalPath<'a>
impl<'a> Ord for LocalPath<'a>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> PartialOrd for LocalPath<'a>
impl<'a> PartialOrd for LocalPath<'a>
impl<'a> Copy for LocalPath<'a>
impl<'a> Eq for LocalPath<'a>
impl<'a> StructuralPartialEq for LocalPath<'a>
Auto Trait Implementations§
impl<'a> Freeze for LocalPath<'a>
impl<'a> RefUnwindSafe for LocalPath<'a>
impl<'a> Send for LocalPath<'a>
impl<'a> Sync for LocalPath<'a>
impl<'a> Unpin for LocalPath<'a>
impl<'a> UnwindSafe for LocalPath<'a>
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