pub struct UidMap {
pub inside_uid: uid_t,
pub outside_uid: uid_t,
pub count: uid_t,
}Expand description
Entry (row) in the uid map
Fields§
§inside_uid: uid_tFirst uid inside the guest namespace
outside_uid: uid_tFirst uid in external (host) namespace
count: uid_tNumber of uids that this entry allows starting from inside/outside uid
Trait Implementations§
impl Copy for UidMap
impl Eq for UidMap
impl StructuralPartialEq for UidMap
Auto Trait Implementations§
impl Freeze for UidMap
impl RefUnwindSafe for UidMap
impl Send for UidMap
impl Sync for UidMap
impl Unpin for UidMap
impl UnwindSafe for UidMap
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