Searched defs:EntryOut (Results 1 – 2 of 2) sorted by relevance
659 pub struct EntryOut { struct660 pub nodeid: u64, /* Inode ID */661 pub generation: u64, /* Inode generation: nodeid:gen must be unique for the fs's lifetime */662 pub entry_valid: u64, /* Cache timeout for the name */663 pub attr_valid: u64, /* Cache timeout for the attributes */664 pub entry_valid_nsec: u32,665 pub attr_valid_nsec: u32,666 pub attr: Attr,
60 impl From<Entry> for sys::EntryOut { implementation61 fn from(entry: Entry) -> sys::EntryOut { in from()