pub struct MutableNodeAttributes {
pub creation_time: Option<u64>,
pub modification_time: Option<u64>,
pub mode: Option<u32>,
pub uid: Option<u32>,
pub gid: Option<u32>,
pub rdev: Option<u64>,
pub access_time: Option<u64>,
pub casefold: Option<bool>,
pub selinux_context: Option<SelinuxContext>,
pub wrapping_key_id: Option<[u8; 16]>,
}
Fields§
§creation_time: Option<u64>
§modification_time: Option<u64>
§mode: Option<u32>
§uid: Option<u32>
§gid: Option<u32>
§rdev: Option<u64>
§access_time: Option<u64>
§casefold: Option<bool>
§selinux_context: Option<SelinuxContext>
§wrapping_key_id: Option<[u8; 16]>
Trait Implementations§
Source§impl Clone for MutableNodeAttributes
impl Clone for MutableNodeAttributes
Source§fn clone(&self) -> MutableNodeAttributes
fn clone(&self) -> MutableNodeAttributes
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MutableNodeAttributes
impl Debug for MutableNodeAttributes
Source§impl Encodable for MutableNodeAttributes
impl Encodable for MutableNodeAttributes
Source§type Encoded = WireMutableNodeAttributes
type Encoded = WireMutableNodeAttributes
The wire type for the value.
§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
An optimization flag that allows the bytes of this type to be copied directly during
encoding instead of calling
encode
. Read moreSource§impl<___E> Encode<___E> for MutableNodeAttributeswhere
___E: Encoder + ?Sized,
impl<___E> Encode<___E> for MutableNodeAttributeswhere
___E: Encoder + ?Sized,
Source§impl TakeFrom<WireMutableNodeAttributes> for MutableNodeAttributes
impl TakeFrom<WireMutableNodeAttributes> for MutableNodeAttributes
Source§fn take_from(from: &WireMutableNodeAttributes) -> Self
fn take_from(from: &WireMutableNodeAttributes) -> Self
Converts from the given
T
, taking any resources that can’t be cloned.§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
An optimization flag that allows the bytes of this type to be copied directly during
conversion instead of calling
take_from
. Read moreAuto Trait Implementations§
impl Freeze for MutableNodeAttributes
impl RefUnwindSafe for MutableNodeAttributes
impl Send for MutableNodeAttributes
impl Sync for MutableNodeAttributes
impl Unpin for MutableNodeAttributes
impl UnwindSafe for MutableNodeAttributes
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