pub struct Pathconf {
pub attr: Option<Attr>,
pub linkmax: u32,
pub name_max: u32,
pub no_trunc: bool,
pub chown_restricted: bool,
pub case_insensitive: bool,
pub case_preserving: bool,
}Expand description
Struct describing path configuration for an NFS entry as returned by Mount::pathconf and Mount::pathconf_path.
Fields§
§attr: Option<Attr>§linkmax: u32§name_max: u32§no_trunc: bool§chown_restricted: bool§case_insensitive: bool§case_preserving: boolTrait Implementations§
impl StructuralPartialEq for Pathconf
Auto Trait Implementations§
impl !Freeze for Pathconf
impl RefUnwindSafe for Pathconf
impl Send for Pathconf
impl Sync for Pathconf
impl Unpin for Pathconf
impl UnsafeUnpin for Pathconf
impl UnwindSafe for Pathconf
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