Enum sozu_command_lib::command::CommandResponseData[][src]

pub enum CommandResponseData {
    Workers(Vec<WorkerInfo>),
    Metrics(AggregatedMetricsData),
    Query(BTreeMap<String, QueryAnswer>),
    State(ConfigState),
}

Variants

Trait Implementations

impl Debug for CommandResponseData
[src]

Formats the value using the given formatter. Read more

impl Clone for CommandResponseData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CommandResponseData
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for CommandResponseData
[src]

Auto Trait Implementations