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