Struct sozu_command_lib::command::CommandRequest[][src]

pub struct CommandRequest {
    pub id: String,
    pub version: u8,
    pub data: CommandRequestData,
    pub worker_id: Option<u32>,
}

Fields

Methods

impl CommandRequest
[src]

Trait Implementations

impl Debug for CommandRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CommandRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CommandRequest
[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 CommandRequest
[src]

impl Hash for CommandRequest
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl<'de> Deserialize<'de> for CommandRequest
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for CommandRequest
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations