Enum exonum::node::ExternalMessage [] [src]

pub enum ExternalMessage {
    PeerAdd(SocketAddr),
    Transaction(Box<Transaction>),
    Enable(bool),
    Shutdown,
}

External messages.

Variants

Add a new connection.

Transaction that implements the Transaction trait.

Enable or disable the node.

Shutdown the node.

Trait Implementations

impl Debug for ExternalMessage
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations