pub enum Nfs3MountErrorCode {
MNT3_OK = 0,
MNT3ERR_PERM = 1,
MNT3ERR_NOENT = 2,
MNT3ERR_IO = 5,
MNT3ERR_ACCES = 13,
MNT3ERR_NOTDIR = 20,
MNT3ERR_INVAL = 22,
MNT3ERR_NAMETOOLONG = 63,
MNT3ERR_NOTSUPP = 10_004,
MNT3ERR_SERVERFAULT = 10_006,
}Variants§
MNT3_OK = 0
MNT3ERR_PERM = 1
MNT3ERR_NOENT = 2
MNT3ERR_IO = 5
MNT3ERR_ACCES = 13
MNT3ERR_NOTDIR = 20
MNT3ERR_INVAL = 22
MNT3ERR_NAMETOOLONG = 63
MNT3ERR_NOTSUPP = 10_004
MNT3ERR_SERVERFAULT = 10_006
Trait Implementations§
Source§impl Debug for mountstat3
impl Debug for mountstat3
Source§impl Display for MountErrorCode
impl Display for MountErrorCode
Source§impl Error for MountErrorCode
impl Error for MountErrorCode
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for mountstat3
impl PartialEq for mountstat3
impl StructuralPartialEq for mountstat3
Source§impl TryFrom<&mut Bytes> for mountstat3
impl TryFrom<&mut Bytes> for mountstat3
Auto Trait Implementations§
impl Freeze for mountstat3
impl RefUnwindSafe for mountstat3
impl Send for mountstat3
impl Sync for mountstat3
impl Unpin for mountstat3
impl UnsafeUnpin for mountstat3
impl UnwindSafe for mountstat3
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