[][src]Enum pea2pea::Topology

pub enum Topology {
    Line,
    Ring,
    Mesh,
    Star,
}

The way in which nodes are connected to each other; used in connect_nodes.

Variants

Line

Each node - except the last one - connects to the next one in a linear fashion.

Ring

Like the Line, but the last node connects to the first one, forming a ring.

Mesh

All the nodes become connected to one another, forming a full mesh.

Star

The first node is the central one (the hub); all the other nodes connect to it.

Trait Implementations

impl Clone for Topology[src]

impl Copy for Topology[src]

impl Debug for Topology[src]

impl Eq for Topology[src]

impl PartialEq<Topology> for Topology[src]

impl StructuralEq for Topology[src]

impl StructuralPartialEq for Topology[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> From<T> for T[src]

impl<T> Instrument for T[src]

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, 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.