pub struct HfsPathEntry {
pub path: String,
pub is_dir: bool,
pub cnid: u32,
}Expand description
A path-qualified entry produced by walk.
Fields§
§path: String/-joined path from the volume root (e.g. "SUB/NESTED.TXT").
is_dir: boolTrue for a folder.
cnid: u32Catalog node ID (CNID).
Trait Implementations§
Source§impl Clone for HfsPathEntry
impl Clone for HfsPathEntry
Source§fn clone(&self) -> HfsPathEntry
fn clone(&self) -> HfsPathEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HfsPathEntry
impl Debug for HfsPathEntry
impl Eq for HfsPathEntry
Source§impl PartialEq for HfsPathEntry
impl PartialEq for HfsPathEntry
Source§fn eq(&self, other: &HfsPathEntry) -> bool
fn eq(&self, other: &HfsPathEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for HfsPathEntry
Auto Trait Implementations§
impl Freeze for HfsPathEntry
impl RefUnwindSafe for HfsPathEntry
impl Send for HfsPathEntry
impl Sync for HfsPathEntry
impl Unpin for HfsPathEntry
impl UnsafeUnpin for HfsPathEntry
impl UnwindSafe for HfsPathEntry
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