Enum libp2p_swarm::handler::ProtocolSupport
source · pub enum ProtocolSupport {
Added(HashSet<StreamProtocol>),
Removed(HashSet<StreamProtocol>),
}
Variants§
Added(HashSet<StreamProtocol>)
The remote now supports these additional protocols.
Removed(HashSet<StreamProtocol>)
The remote no longer supports these protocols.
Trait Implementations§
source§impl Clone for ProtocolSupport
impl Clone for ProtocolSupport
source§fn clone(&self) -> ProtocolSupport
fn clone(&self) -> ProtocolSupport
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 Debug for ProtocolSupport
impl Debug for ProtocolSupport
source§impl PartialEq for ProtocolSupport
impl PartialEq for ProtocolSupport
source§fn eq(&self, other: &ProtocolSupport) -> bool
fn eq(&self, other: &ProtocolSupport) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ProtocolSupport
impl StructuralEq for ProtocolSupport
impl StructuralPartialEq for ProtocolSupport
Auto Trait Implementations§
impl RefUnwindSafe for ProtocolSupport
impl Send for ProtocolSupport
impl Sync for ProtocolSupport
impl Unpin for ProtocolSupport
impl UnwindSafe for ProtocolSupport
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