[][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(id: Id, address: Address) -> Self[src]

create a new Node with the given Id and Address.

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

access the unique identifier of the Node.

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

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

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

these are the Topic and the InterestLevel associated.

pub fn subscribers<'a>(&'a self) -> impl Iterator<Item = &'a 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 PartialEq<Node> for Node[src]

impl Clone for Node[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for Node[src]

impl Debug for Node[src]

impl Serialize for Node[src]

impl<'de> Deserialize<'de> for Node[src]

Auto Trait Implementations

impl Send for Node

impl Sync for Node

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

type Output = T

Should always be Self