pub enum EitherOutbound<A, B> where
A: StreamMuxer,
B: StreamMuxer, {
A(<A as StreamMuxer>::OutboundSubstream),
B(<B as StreamMuxer>::OutboundSubstream),
}
Variants
A(<A as StreamMuxer>::OutboundSubstream)
B(<B as StreamMuxer>::OutboundSubstream)
Trait Implementations
sourceimpl<A, B> Clone for EitherOutbound<A, B> where
A: Clone + StreamMuxer,
B: Clone + StreamMuxer,
<A as StreamMuxer>::OutboundSubstream: Clone,
<B as StreamMuxer>::OutboundSubstream: Clone,
impl<A, B> Clone for EitherOutbound<A, B> where
A: Clone + StreamMuxer,
B: Clone + StreamMuxer,
<A as StreamMuxer>::OutboundSubstream: Clone,
<B as StreamMuxer>::OutboundSubstream: Clone,
sourcepub fn clone(&self) -> EitherOutbound<A, B>
pub 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, B> Debug for EitherOutbound<A, B> where
A: Debug + StreamMuxer,
B: Debug + StreamMuxer,
<A as StreamMuxer>::OutboundSubstream: Debug,
<B as StreamMuxer>::OutboundSubstream: Debug,
impl<A, B> Debug for EitherOutbound<A, B> where
A: Debug + StreamMuxer,
B: Debug + StreamMuxer,
<A as StreamMuxer>::OutboundSubstream: Debug,
<B as StreamMuxer>::OutboundSubstream: Debug,
impl<A, B> Copy for EitherOutbound<A, B> where
A: Copy + StreamMuxer,
B: Copy + StreamMuxer,
<A as StreamMuxer>::OutboundSubstream: Copy,
<B as StreamMuxer>::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