Enum libp2p::core::either::EitherName
source · pub enum EitherName<A, B> {
A(A),
B(B),
}
Variants§
Trait Implementations§
source§impl<A, B> Clone for EitherName<A, B>where
A: Clone,
B: Clone,
impl<A, B> Clone for EitherName<A, B>where A: Clone, B: Clone,
source§fn clone(&self) -> EitherName<A, B>
fn clone(&self) -> EitherName<A, B>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<A, B> ProtocolName for EitherName<A, B>where
A: ProtocolName,
B: ProtocolName,
impl<A, B> ProtocolName for EitherName<A, B>where A: ProtocolName, B: ProtocolName,
Auto Trait Implementations§
impl<A, B> RefUnwindSafe for EitherName<A, B>where A: RefUnwindSafe, B: RefUnwindSafe,
impl<A, B> Send for EitherName<A, B>where A: Send, B: Send,
impl<A, B> Sync for EitherName<A, B>where A: Sync, B: Sync,
impl<A, B> Unpin for EitherName<A, B>where A: Unpin, B: Unpin,
impl<A, B> UnwindSafe for EitherName<A, B>where A: UnwindSafe, B: 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