Enum sc_peerset::Message
source · pub enum Message {
Connect {
set_id: SetId,
peer_id: PeerId,
},
Drop {
set_id: SetId,
peer_id: PeerId,
},
Accept(IncomingIndex),
Reject(IncomingIndex),
}
Expand description
Message that can be sent by the peer set manager (PSM).
Variants§
Connect
Request to open a connection to the given peer. From the point of view of the PSM, we are immediately connected.
Drop
Drop the connection to the given peer, or cancel the connection attempt after a Connect
.
Accept(IncomingIndex)
Equivalent to Connect
for the peer corresponding to this incoming index.
Reject(IncomingIndex)
Equivalent to Drop
for the peer corresponding to this incoming index.
Trait Implementations§
source§impl PartialEq<Message> for Message
impl PartialEq<Message> for Message
impl StructuralPartialEq for Message
Auto Trait Implementations§
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnwindSafe for Message
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