pub struct RemoteFs { /* private fields */ }Implementations§
Trait Implementations§
Source§impl FileSystemOps for RemoteFs
impl FileSystemOps for RemoteFs
Source§fn statfs(
&self,
_fs: &FileSystem,
_current_task: &CurrentTask,
) -> Result<statfs, Errno>
fn statfs( &self, _fs: &FileSystem, _current_task: &CurrentTask, ) -> Result<statfs, Errno>
Return information about this filesystem. Read more
fn name(&self) -> &'static FsStr
Source§fn uses_external_node_ids(&self) -> bool
fn uses_external_node_ids(&self) -> bool
Whether this file system uses external node IDs. Read more
Source§fn rename(
&self,
_fs: &FileSystem,
current_task: &CurrentTask,
context: &mut RenameContext<'_>,
old_name: &FsStr,
new_name: &FsStr,
) -> Result<(), Errno>
fn rename( &self, _fs: &FileSystem, current_task: &CurrentTask, context: &mut RenameContext<'_>, old_name: &FsStr, new_name: &FsStr, ) -> Result<(), Errno>
Rename the given node. Read more
fn sync( &self, _fs: &FileSystem, _current_task: &CurrentTask, ) -> Result<(), Errno>
Source§fn manages_timestamps(&self) -> bool
fn manages_timestamps(&self) -> bool
Indicates if the filesystem can manage the timestamps (i.e. ctime and mtime). Read more
Source§fn update_flags(
&self,
fs: &FileSystem,
_current_task: &CurrentTask,
flags: FileSystemFlags,
) -> Result<(), Errno>
fn update_flags( &self, fs: &FileSystem, _current_task: &CurrentTask, flags: FileSystemFlags, ) -> Result<(), Errno>
Reconfigure the filesystem with the given flags. Read more
Source§fn fs_lockdep_type(&self) -> FsLockDepType
fn fs_lockdep_type(&self) -> FsLockDepType
Returns the
FsLockDepType of this filesystem. Read moreSource§fn exchange(
&self,
_fs: &FileSystem,
_current_task: &CurrentTask,
_context: &mut RenameContext<'_>,
_name1: &FsStr,
_name2: &FsStr,
) -> Result<(), Errno>
fn exchange( &self, _fs: &FileSystem, _current_task: &CurrentTask, _context: &mut RenameContext<'_>, _name1: &FsStr, _name2: &FsStr, ) -> Result<(), Errno>
Source§fn crypt_service(&self) -> Option<Arc<CryptService>>
fn crypt_service(&self) -> Option<Arc<CryptService>>
Returns the crypt service associated with this filesystem, if any.
Auto Trait Implementations§
impl Freeze for RemoteFs
impl RefUnwindSafe for RemoteFs
impl Send for RemoteFs
impl Sync for RemoteFs
impl Unpin for RemoteFs
impl UnsafeUnpin for RemoteFs
impl UnwindSafe for RemoteFs
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, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<F, N> FidlIntoNative<Box<N>> for Fwhere
F: FidlIntoNative<N>,
impl<F, N> FidlIntoNative<Box<N>> for Fwhere
F: FidlIntoNative<N>,
fn fidl_into_native(self) -> Box<N>
§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more