arceos_api::fs

Type Alias AxDirEntry

Source
pub type AxDirEntry = VfsDirEntry;
Available on crate feature fs only.
Expand description

Alias of [axfs_vfs::VfsDirEntry].

Aliased Type§

struct AxDirEntry { /* private fields */ }

Implementations

§

impl VfsDirEntry

pub const fn default() -> VfsDirEntry

Creates an empty VfsDirEntry.

pub fn new(name: &str, ty: VfsNodeType) -> VfsDirEntry

Creates a new VfsDirEntry with the given name and type.

pub fn entry_type(&self) -> VfsNodeType

Returns the type of the entry.

pub fn name_as_bytes(&self) -> &[u8]

Converts the name of the entry to a byte slice.