pub struct NfsAccess<'a> {
pub root_list: &'a [&'a str],
pub rw_list: &'a [&'a str],
pub ro_list: &'a [&'a str],
pub anon_uid: Option<i64>,
pub anon_gid: Option<i64>,
}
Expand description
Represent NFS access control information.
Fields§
§root_list: &'a [&'a str]
List of hosts with root access.
rw_list: &'a [&'a str]
List of hosts with read and write access.
ro_list: &'a [&'a str]
List of hosts with read only access.
anon_uid: Option<i64>
UID to map to anonymous
anon_gid: Option<i64>
GID to map to anonymous
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for NfsAccess<'a>
impl<'a> RefUnwindSafe for NfsAccess<'a>
impl<'a> Send for NfsAccess<'a>
impl<'a> Sync for NfsAccess<'a>
impl<'a> Unpin for NfsAccess<'a>
impl<'a> UnwindSafe for NfsAccess<'a>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)