Enum ockam_node::NodeReply[][src]

pub enum NodeReply {
    Ok,
    Workers(Vec<Address>),
    Sender {
        addr: Address,
        sender: Sender<RelayMessage>,
        wrap: bool,
    },
}
Expand description

Successful return values from a router command

Variants

Ok

Success with no payload

Workers

A list of worker addresses

Tuple Fields of Workers

0: Vec<Address>
Sender

Message sender to a specific worker

Fields of Sender

addr: Address

The address a message is being sent to

sender: Sender<RelayMessage>

The relay sender

wrap: bool

Indicate whether the relay message needs to be constructed with router wrapping.

Implementations

Return [NodeReply::WorkerExists] for the given address

Return [NodeReply::RouterExists]

Return NodeReply::Workers for the given addresses

Return NodeReply::Sender for the given information

Consume the wrapper and return NodeReply::Sender

Consume the wrapper and return NodeReply::Workers

Returns Ok if self is NodeReply::Ok

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.