Enum libp2p_core::either::EitherOutbound
source · [−]pub enum EitherOutbound<A: StreamMuxer, B: StreamMuxer> {
A(A::OutboundSubstream),
B(B::OutboundSubstream),
}
Variants
A(A::OutboundSubstream)
B(B::OutboundSubstream)
Trait Implementations
sourceimpl<A: Clone + StreamMuxer, B: Clone + StreamMuxer> Clone for EitherOutbound<A, B> where
A::OutboundSubstream: Clone,
B::OutboundSubstream: Clone,
impl<A: Clone + StreamMuxer, B: Clone + StreamMuxer> Clone for EitherOutbound<A, B> where
A::OutboundSubstream: Clone,
B::OutboundSubstream: Clone,
sourcefn clone(&self) -> EitherOutbound<A, B>
fn clone(&self) -> EitherOutbound<A, B>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<A: Debug + StreamMuxer, B: Debug + StreamMuxer> Debug for EitherOutbound<A, B> where
A::OutboundSubstream: Debug,
B::OutboundSubstream: Debug,
impl<A: Debug + StreamMuxer, B: Debug + StreamMuxer> Debug for EitherOutbound<A, B> where
A::OutboundSubstream: Debug,
B::OutboundSubstream: Debug,
impl<A: Copy + StreamMuxer, B: Copy + StreamMuxer> Copy for EitherOutbound<A, B> where
A::OutboundSubstream: Copy,
B::OutboundSubstream: Copy,
Auto Trait Implementations
impl<A, B> RefUnwindSafe for EitherOutbound<A, B> where
<A as StreamMuxer>::OutboundSubstream: RefUnwindSafe,
<B as StreamMuxer>::OutboundSubstream: RefUnwindSafe,
impl<A, B> Send for EitherOutbound<A, B> where
<A as StreamMuxer>::OutboundSubstream: Send,
<B as StreamMuxer>::OutboundSubstream: Send,
impl<A, B> Sync for EitherOutbound<A, B> where
<A as StreamMuxer>::OutboundSubstream: Sync,
<B as StreamMuxer>::OutboundSubstream: Sync,
impl<A, B> Unpin for EitherOutbound<A, B> where
<A as StreamMuxer>::OutboundSubstream: Unpin,
<B as StreamMuxer>::OutboundSubstream: Unpin,
impl<A, B> UnwindSafe for EitherOutbound<A, B> where
<A as StreamMuxer>::OutboundSubstream: UnwindSafe,
<B as StreamMuxer>::OutboundSubstream: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more