Struct AsyncFdTryNewError
struct AsyncFdTryNewError<T> { ... }
Error returned by try_new or try_with_interest.
Implementations
impl<T> AsyncFdTryNewError<T>
fn into_parts(self: Self) -> (T, Error)Returns the original object passed to
try_newortry_with_interestalongside the error that caused these functions to fail.
impl<T> Any for AsyncFdTryNewError<T>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for AsyncFdTryNewError<T>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for AsyncFdTryNewError<T>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> Debug for AsyncFdTryNewError<T>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<T> Display for AsyncFdTryNewError<T>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<T> Error for AsyncFdTryNewError<T>
fn source(self: &Self) -> Option<&dyn Error + 'static>
impl<T> Freeze for AsyncFdTryNewError<T>
impl<T> From for AsyncFdTryNewError<T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> RefUnwindSafe for AsyncFdTryNewError<T>
impl<T> Send for AsyncFdTryNewError<T>
impl<T> Sync for AsyncFdTryNewError<T>
impl<T> ToString for AsyncFdTryNewError<T>
fn to_string(self: &Self) -> String
impl<T> Unpin for AsyncFdTryNewError<T>
impl<T> UnsafeUnpin for AsyncFdTryNewError<T>
impl<T> UnwindSafe for AsyncFdTryNewError<T>
impl<T, U> Into for AsyncFdTryNewError<T>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for AsyncFdTryNewError<T>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for AsyncFdTryNewError<T>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>