Struct actix_telepathy::Cluster[][src]

pub struct Cluster { /* fields omitted */ }

Central Actor for cluster handling

Implementations

impl Cluster[src]

pub fn new(ip_address: SocketAddr, seed_nodes: Vec<SocketAddr>) -> Addr<Cluster>[src]

Trait Implementations

impl Actor for Cluster[src]

type Context = Context<Self>

Actor execution context type

impl CustomSystemService for Cluster[src]

impl Default for Cluster[src]

impl Handler<ConnectionApproval> for Cluster[src]

type Result = ConnectionApprovalResponse

The type of value that this handler will return. Read more

impl Handler<GossipResponse> for Cluster[src]

type Result = ()

The type of value that this handler will return. Read more

impl Handler<NodeEvents> for Cluster[src]

type Result = ()

The type of value that this handler will return. Read more

impl Handler<TcpConnect> for Cluster[src]

type Result = ()

The type of value that this handler will return. Read more

impl Supervised for Cluster[src]

impl SystemService for Cluster[src]

Auto Trait Implementations

impl !RefUnwindSafe for Cluster

impl Send for Cluster

impl Sync for Cluster

impl Unpin for Cluster

impl !UnwindSafe for Cluster

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, U> Into<U> for T where
    U: From<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<V, T> VZip<V> for T where
    V: MultiLane<T>,