[][src]Struct poldercast::Node

pub struct Node { /* fields omitted */ }

The data associated to a Node.

This can be gossiped through the topology in order to update the topology of new nodes or better neighbors.

Methods

impl Node[src]

pub fn new<R: RngCore>(rng: &mut R) -> Self[src]

create a new unreachable Node with the given Address.

pub fn new_with(address: Address) -> Self[src]

create a new Node with the given Address.

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

access the unique identifier of the Node.

pub fn address(&self) -> &Option<Address>[src]

get the Node's address (mean to contact it)

pub fn subscriptions(&self) -> impl Iterator<Item = (&Topic, &InterestLevel)>[src]

these are the Topic and the InterestLevel associated.

pub fn subscribers(&self) -> impl Iterator<Item = &Id>[src]

the nodes that are related to this Node

pub fn add_subscription(
    &mut self,
    subscription: Subscription
) -> Option<InterestLevel>
[src]

add a subscription

pub fn remove_subscription(&mut self, topic: Topic) -> Option<InterestLevel>[src]

remove a subscriptions

pub fn common_subscriptions<'a>(
    &'a self,
    other: &'a Self
) -> impl Iterator<Item = &'a Topic>
[src]

list all common subscriptions between the two nodes

pub fn common_subscribers<'a>(
    &'a self,
    other: &'a Self
) -> impl Iterator<Item = &'a Id>
[src]

list all common subscribers between the two nodes

pub fn proximity(&self, other: &Self) -> Proximity[src]

compute the relative proximity between these 2 nodes.

This is based on the subscription. The more 2 nodes have subscription in common the closer they are.

Trait Implementations

impl Eq for Node[src]

impl Clone for Node[src]

impl PartialEq<Node> for Node[src]

impl Debug for Node[src]

Auto Trait Implementations

impl Send for Node

impl Unpin for Node

impl Sync for Node

impl RefUnwindSafe for Node

impl UnwindSafe for Node

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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