pub enum ImmutableFdError {
OSError(Errno),
ImmutabilityUnproven,
}Variants§
Trait Implementations§
Source§impl Debug for ImmutableFdError
impl Debug for ImmutableFdError
Source§impl Display for ImmutableFdError
impl Display for ImmutableFdError
Source§impl Error for ImmutableFdError
impl Error for ImmutableFdError
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 From<Errno> for ImmutableFdError
impl From<Errno> for ImmutableFdError
Source§impl PartialEq for ImmutableFdError
impl PartialEq for ImmutableFdError
impl StructuralPartialEq for ImmutableFdError
Auto Trait Implementations§
impl Freeze for ImmutableFdError
impl RefUnwindSafe for ImmutableFdError
impl Send for ImmutableFdError
impl Sync for ImmutableFdError
impl Unpin for ImmutableFdError
impl UnwindSafe for ImmutableFdError
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