[][src]Struct poldercast::Nodes

pub struct Nodes { /* fields omitted */ }

Methods

impl Nodes[src]

pub fn entry(&mut self, public_id: Id) -> Entry[src]

pub fn available_nodes(&self) -> &BTreeSet<Id>[src]

pub fn unreachable_nodes(&self) -> &BTreeSet<Id>[src]

access nodes that are connected to us but not necessarily reachable

This can be nodes that are behind a firewall or a NAT and that can't do hole punching to allow other nodes to connect to them.

pub fn quarantined_nodes(&self) -> &HashSet<Id>[src]

Trait Implementations

impl Default for Nodes[src]

impl Debug for Nodes[src]

Auto Trait Implementations

impl Send for Nodes

impl Sync for Nodes

impl Unpin for Nodes

impl UnwindSafe for Nodes

impl RefUnwindSafe for Nodes

Blanket Implementations

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

impl<T> From<T> for T[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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self