Struct ReuniteError

struct ReuniteError<T>(7200, 7201)

Error indicating a ReadHalf<T> and WriteHalf<T> were not two halves of a AsyncRead + AsyncWrite, and thus could not be reunited.

Implementations

impl<T> Any for ReuniteError<T>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for ReuniteError<T>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for ReuniteError<T>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> Debug for ReuniteError<T>

fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result

impl<T> Display for ReuniteError<T>

fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result

impl<T> Freeze for ReuniteError<T>

impl<T> From for ReuniteError<T>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> RefUnwindSafe for ReuniteError<T>

impl<T> Send for ReuniteError<T>

impl<T> Sync for ReuniteError<T>

impl<T> ToString for ReuniteError<T>

fn to_string(self: &Self) -> String

impl<T> Unpin for ReuniteError<T>

impl<T> UnsafeUnpin for ReuniteError<T>

impl<T> UnwindSafe for ReuniteError<T>

impl<T, U> Into for ReuniteError<T>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for ReuniteError<T>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for ReuniteError<T>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>

impl<T: core::any::Any> Error for ReuniteError<T>