pub struct FileSystemClient { /* private fields */ }Implementations§
Source§impl FileSystemClient
impl FileSystemClient
pub fn get_directory_client<P>(&self, path: P) -> DirectoryClient
pub fn into_directory_client<P>(self, path: P) -> DirectoryClient
pub fn get_file_client<P>(&self, path: P) -> FileClient
pub fn into_file_client<P>(self, path: P) -> FileClient
pub fn list_paths(&self) -> ListPathsBuilder
pub fn create(&self) -> CreateFileSystemBuilder
pub fn delete(&self) -> DeleteFileSystemBuilder
pub fn get_properties(&self) -> GetFileSystemPropertiesBuilder
pub fn set_properties( &self, properties: Properties, ) -> SetFileSystemPropertiesBuilder
Trait Implementations§
Source§impl Clone for FileSystemClient
impl Clone for FileSystemClient
Source§fn clone(&self) -> FileSystemClient
fn clone(&self) -> FileSystemClient
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 moreAuto Trait Implementations§
impl Freeze for FileSystemClient
impl !RefUnwindSafe for FileSystemClient
impl Send for FileSystemClient
impl Sync for FileSystemClient
impl Unpin for FileSystemClient
impl !UnwindSafe for FileSystemClient
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