pub struct WriteMeta {
pub inode: Inode,
pub handle: Option<Handle>,
pub attrs: Attrs,
pub attrs_set: AttrsSet,
}
Expand description
A request to write the metadata of a file.
Fields§
§inode: Inode
§handle: Option<Handle>
§attrs: Attrs
§attrs_set: AttrsSet
The bits in this value indicate which fields in attrs
have been initialized.
Trait Implementations§
source§impl<'de> Deserialize<'de> for WriteMeta
impl<'de> Deserialize<'de> for WriteMeta
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for WriteMeta
impl Send for WriteMeta
impl Sync for WriteMeta
impl Unpin for WriteMeta
impl UnwindSafe for WriteMeta
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