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
impl VfsDirEntry
pub const fn default() -> VfsDirEntry
pub const fn default() -> VfsDirEntry
Creates an empty VfsDirEntry
.
pub fn new(name: &str, ty: VfsNodeType) -> 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
pub fn entry_type(&self) -> VfsNodeType
Returns the type of the entry.
pub fn name_as_bytes(&self) -> &[u8] ⓘ
pub fn name_as_bytes(&self) -> &[u8] ⓘ
Converts the name of the entry to a byte slice.