pub struct NoopReconnectDelegate<I, A>(/* private fields */);Expand description
Noop implementation of ReconnectDelegate.
Trait Implementations§
Source§impl<I, A> Clone for NoopReconnectDelegate<I, A>
impl<I, A> Clone for NoopReconnectDelegate<I, A>
Source§impl<I, A> Default for NoopReconnectDelegate<I, A>
impl<I, A> Default for NoopReconnectDelegate<I, A>
Source§impl<I, A> ReconnectDelegate for NoopReconnectDelegate<I, A>
impl<I, A> ReconnectDelegate for NoopReconnectDelegate<I, A>
impl<I, A> Copy for NoopReconnectDelegate<I, A>
Auto Trait Implementations§
impl<I, A> Freeze for NoopReconnectDelegate<I, A>
impl<I, A> RefUnwindSafe for NoopReconnectDelegate<I, A>where
I: RefUnwindSafe,
A: RefUnwindSafe,
impl<I, A> Send for NoopReconnectDelegate<I, A>
impl<I, A> Sync for NoopReconnectDelegate<I, A>
impl<I, A> Unpin for NoopReconnectDelegate<I, A>
impl<I, A> UnwindSafe for NoopReconnectDelegate<I, A>where
I: UnwindSafe,
A: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more