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
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
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