Struct fuse_backend_rs::api::filesystem::DirEntry

source ·
pub struct DirEntry<'a> {
    pub ino: ino64_t,
    pub offset: u64,
    pub type_: u32,
    pub name: &'a [u8],
}
Expand description

Represents information about an entry in a directory.

Fields§

§ino: ino64_t

The inode number for this entry. This does NOT have to be the same as the Inode for this directory entry. However, it must be the same as the attr.st_ino field of the Entry that would be returned by a lookup request in the parent directory for name.

§offset: u64

Any non-zero value that the kernel can use to identify the current point in the directory entry stream. It does not need to be the actual physical position. A value of 0 is reserved to mean “from the beginning” and should never be used. The offset value of the first entry in a stream should point to the beginning of the second entry and so on.

§type_: u32

The type of this directory entry. Valid values are any of the libc::DT_* constants.

§name: &'a [u8]

The name of this directory entry. There are no requirements for the contents of this field and any sequence of bytes is considered valid.

Trait Implementations§

source§

impl<'a> Clone for DirEntry<'a>

source§

fn clone(&self) -> DirEntry<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Copy for DirEntry<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for DirEntry<'a>

§

impl<'a> RefUnwindSafe for DirEntry<'a>

§

impl<'a> Send for DirEntry<'a>

§

impl<'a> Sync for DirEntry<'a>

§

impl<'a> Unpin for DirEntry<'a>

§

impl<'a> UnwindSafe for DirEntry<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.