pub struct ReaddirplusEntry {
pub fileid: u64,
pub file_name: String,
pub attr: Option<Attr>,
pub handle: Bytes,
}Expand description
Struct describing a single NFS entry as returned by Mount::readdirplus and Mount::readdirplus_path.
Fields§
§fileid: u64§file_name: String§attr: Option<Attr>§handle: BytesTrait Implementations§
Auto Trait Implementations§
impl !Freeze for ReaddirplusEntry
impl RefUnwindSafe for ReaddirplusEntry
impl Send for ReaddirplusEntry
impl Sync for ReaddirplusEntry
impl Unpin for ReaddirplusEntry
impl UnsafeUnpin for ReaddirplusEntry
impl UnwindSafe for ReaddirplusEntry
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