pub struct ReplyStatFs<'a> { /* private fields */ }Expand description
FUSE statfs response
Implementations§
Source§impl<'a> ReplyStatFs<'a>
impl<'a> ReplyStatFs<'a>
Source§impl ReplyStatFs<'_>
impl ReplyStatFs<'_>
Sourcepub async fn error(self, err: AsyncFusexError) -> Result<usize>
pub async fn error(self, err: AsyncFusexError) -> Result<usize>
fuse reply error
Sourcepub async fn error_code(self, error_code: Errno) -> Result<usize>
pub async fn error_code(self, error_code: Errno) -> Result<usize>
fuse reply error code
Source§impl ReplyStatFs<'_>
impl ReplyStatFs<'_>
Sourcepub async fn statfs(self, param: StatFsParam) -> Result<usize>
pub async fn statfs(self, param: StatFsParam) -> Result<usize>
Reply statfs response
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ReplyStatFs<'a>
impl<'a> RefUnwindSafe for ReplyStatFs<'a>
impl<'a> Send for ReplyStatFs<'a>
impl<'a> Sync for ReplyStatFs<'a>
impl<'a> Unpin for ReplyStatFs<'a>
impl<'a> !UnwindSafe for ReplyStatFs<'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