pub struct IdMappings {
pub gidmap: Option<Vec<IdMap>>,
pub uidmap: Option<Vec<IdMap>>,
}
Expand description
IDMappings describe the GID and UID mappings
Fields§
§gidmap: Option<Vec<IdMap>>
§uidmap: Option<Vec<IdMap>>
Trait Implementations§
Source§impl Clone for IdMappings
impl Clone for IdMappings
Source§fn clone(&self) -> IdMappings
fn clone(&self) -> IdMappings
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IdMappings
impl Debug for IdMappings
Source§impl<'de> Deserialize<'de> for IdMappings
impl<'de> Deserialize<'de> for IdMappings
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<IdMappings, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<IdMappings, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for IdMappings
impl PartialEq for IdMappings
Source§impl Serialize for IdMappings
impl Serialize for IdMappings
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for IdMappings
Auto Trait Implementations§
impl Freeze for IdMappings
impl RefUnwindSafe for IdMappings
impl Send for IdMappings
impl Sync for IdMappings
impl Unpin for IdMappings
impl UnwindSafe for IdMappings
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