[][src]Struct tari_comms::PeerConnection

pub struct PeerConnection { /* fields omitted */ }

Request handle for an active peer connection

Implementations

impl PeerConnection[src]

pub fn peer_node_id(&self) -> &NodeId[src]

pub fn peer_features(&self) -> PeerFeatures[src]

pub fn direction(&self) -> ConnectionDirection[src]

pub fn address(&self) -> &Multiaddr[src]

pub fn id(&self) -> ConnectionId[src]

pub fn is_connected(&self) -> bool[src]

pub fn age(&self) -> Duration[src]

pub fn substream_count(&self) -> usize[src]

pub async fn open_substream<'_, '_>(
    &'_ mut self,
    protocol_id: &'_ ProtocolId
) -> Result<NegotiatedSubstream<Substream>, PeerConnectionError>
[src]

pub async fn open_framed_substream<'_, '_>(
    &'_ mut self,
    protocol_id: &'_ ProtocolId,
    max_frame_size: usize
) -> Result<CanonicalFraming<Substream>, PeerConnectionError>
[src]

pub async fn disconnect<'_>(&'_ mut self) -> Result<(), PeerConnectionError>[src]

Immediately disconnects the peer connection. This can only fail if the peer connection worker is shut down (and the peer is already disconnected)

Trait Implementations

impl Clone for PeerConnection[src]

impl Debug for PeerConnection[src]

impl Display for PeerConnection[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, U> Cast<U> for T where
    U: FromCast<T>, 

impl<'a, T> DefaultFeatures<'a> for T where
    T: 'a + Clone + Send + Sync

impl<T> From<T> for T[src]

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<'a, T> NonSyncFeatures<'a> for T where
    T: 'a + Clone

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,