pub struct CreatedEntry {
pub ttl: Duration,
pub attr: FileAttr,
pub fh: u64,
pub flags: u32,
}Expand description
The return value for create: contains info on the newly-created file, as well as a handle to
the opened file.
Fields§
§ttl: DurationEntry cache time-to-live.
attr: FileAttrAttributes returned for the created file.
fh: u64File handle returned for the opened file.
flags: u32Open response flags returned to fuser.
Trait Implementations§
Source§impl Clone for CreatedEntry
impl Clone for CreatedEntry
Source§fn clone(&self) -> CreatedEntry
fn clone(&self) -> CreatedEntry
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 moreAuto Trait Implementations§
impl Freeze for CreatedEntry
impl RefUnwindSafe for CreatedEntry
impl Send for CreatedEntry
impl Sync for CreatedEntry
impl Unpin for CreatedEntry
impl UnsafeUnpin for CreatedEntry
impl UnwindSafe for CreatedEntry
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