Home
last modified time | relevance | path

Searched defs:EntryOut (Results 1 – 2 of 2) sorted by relevance

/external/crosvm/fuse/src/
Dsys.rs626 pub struct EntryOut { struct
627 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,
Dfilesystem.rs54 impl From<Entry> for sys::EntryOut { implementation
55 fn from(entry: Entry) -> sys::EntryOut { in from()