Struct tokio::io::unix::AsyncFdTryNewError
source · pub struct AsyncFdTryNewError<T> { /* private fields */ }
Expand description
Error returned by try_new
or try_with_interest
.
Implementations§
source§impl<T> AsyncFdTryNewError<T>
impl<T> AsyncFdTryNewError<T>
sourcepub fn into_parts(self) -> (T, Error)
pub fn into_parts(self) -> (T, Error)
Returns the original object passed to try_new
or try_with_interest
alongside the error that caused these functions to fail.
Trait Implementations§
source§impl<T> Debug for AsyncFdTryNewError<T>
impl<T> Debug for AsyncFdTryNewError<T>
source§impl<T> Display for AsyncFdTryNewError<T>
impl<T> Display for AsyncFdTryNewError<T>
source§impl<T> Error for AsyncFdTryNewError<T>
impl<T> Error for AsyncFdTryNewError<T>
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<T> From<AsyncFdTryNewError<T>> for Error
impl<T> From<AsyncFdTryNewError<T>> for Error
source§fn from(value: AsyncFdTryNewError<T>) -> Self
fn from(value: AsyncFdTryNewError<T>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<T> Freeze for AsyncFdTryNewError<T>where
T: Freeze,
impl<T> !RefUnwindSafe for AsyncFdTryNewError<T>
impl<T> Send for AsyncFdTryNewError<T>where
T: Send,
impl<T> Sync for AsyncFdTryNewError<T>where
T: Sync,
impl<T> Unpin for AsyncFdTryNewError<T>where
T: Unpin,
impl<T> !UnwindSafe for AsyncFdTryNewError<T>
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