pub struct DisconnectedPeer<'a, TTrans, TInEvent, TOutEvent, THandler>where
TTrans: Transport,
THandler: IntoConnectionHandler,{ /* private fields */ }
Expand description
The representation of a peer to whom the Network
has currently
neither an established connection, nor an ongoing dialing attempt
initiated by the local peer.
Implementations§
Source§impl<'a, TTrans, TInEvent, TOutEvent, THandler> DisconnectedPeer<'a, TTrans, TInEvent, TOutEvent, THandler>where
TTrans: Transport,
THandler: IntoConnectionHandler,
impl<'a, TTrans, TInEvent, TOutEvent, THandler> DisconnectedPeer<'a, TTrans, TInEvent, TOutEvent, THandler>where
TTrans: Transport,
THandler: IntoConnectionHandler,
pub fn id(&self) -> &PeerId
Sourcepub fn into_peer(self) -> Peer<'a, TTrans, TInEvent, TOutEvent, THandler>
pub fn into_peer(self) -> Peer<'a, TTrans, TInEvent, TOutEvent, THandler>
Returns the DisconnectedPeer
into a Peer
.
Sourcepub fn set_connected<TMuxer>(
self,
connected: Connected,
connection: Connection<TMuxer, THandler::Handler>,
) -> Result<ConnectedPeer<'a, TTrans, TInEvent, TOutEvent, THandler>, ConnectionLimit>where
TInEvent: Send + 'static,
TOutEvent: Send + 'static,
THandler: Send + 'static,
TTrans::Error: Send + 'static,
THandler::Handler: ConnectionHandler<Substream = Substream<TMuxer>, InEvent = TInEvent, OutEvent = TOutEvent> + Send,
<THandler::Handler as ConnectionHandler>::OutboundOpenInfo: Send,
<THandler::Handler as ConnectionHandler>::Error: Error + Send + 'static,
TMuxer: StreamMuxer + Send + Sync + 'static,
TMuxer::OutboundSubstream: Send,
pub fn set_connected<TMuxer>(
self,
connected: Connected,
connection: Connection<TMuxer, THandler::Handler>,
) -> Result<ConnectedPeer<'a, TTrans, TInEvent, TOutEvent, THandler>, ConnectionLimit>where
TInEvent: Send + 'static,
TOutEvent: Send + 'static,
THandler: Send + 'static,
TTrans::Error: Send + 'static,
THandler::Handler: ConnectionHandler<Substream = Substream<TMuxer>, InEvent = TInEvent, OutEvent = TOutEvent> + Send,
<THandler::Handler as ConnectionHandler>::OutboundOpenInfo: Send,
<THandler::Handler as ConnectionHandler>::Error: Error + Send + 'static,
TMuxer: StreamMuxer + Send + Sync + 'static,
TMuxer::OutboundSubstream: Send,
Moves the peer into a connected state by supplying an existing established connection.
No event is generated for this action.
§Panics
Panics if connected.peer_id
does not identify the current peer.
Trait Implementations§
Auto Trait Implementations§
impl<'a, TTrans, TInEvent, TOutEvent, THandler> Freeze for DisconnectedPeer<'a, TTrans, TInEvent, TOutEvent, THandler>
impl<'a, TTrans, TInEvent, TOutEvent, THandler> !RefUnwindSafe for DisconnectedPeer<'a, TTrans, TInEvent, TOutEvent, THandler>
impl<'a, TTrans, TInEvent, TOutEvent, THandler> Send for DisconnectedPeer<'a, TTrans, TInEvent, TOutEvent, THandler>
impl<'a, TTrans, TInEvent, TOutEvent, THandler> !Sync for DisconnectedPeer<'a, TTrans, TInEvent, TOutEvent, THandler>
impl<'a, TTrans, TInEvent, TOutEvent, THandler> Unpin for DisconnectedPeer<'a, TTrans, TInEvent, TOutEvent, THandler>
impl<'a, TTrans, TInEvent, TOutEvent, THandler> !UnwindSafe for DisconnectedPeer<'a, TTrans, TInEvent, TOutEvent, THandler>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more