Searched defs:EntryOut (Results 1 – 2 of 2) sorted by relevance
626 pub struct EntryOut { struct627 pub nodeid: u64, /* Inode ID */628 pub generation: u64, /* Inode generation: nodeid:gen must be unique for the fs's lifetime */629 pub entry_valid: u64, /* Cache timeout for the name */630 pub attr_valid: u64, /* Cache timeout for the attributes */631 pub entry_valid_nsec: u32,632 pub attr_valid_nsec: u32,633 pub attr: Attr,
54 impl From<Entry> for sys::EntryOut { implementation55 fn from(entry: Entry) -> sys::EntryOut { in from()