Enum sozu_lib::messages::Order [] [src]

pub enum Order {
    AddHttpFront(HttpFront),
    RemoveHttpFront(HttpFront),
    AddTlsFront(TlsFront),
    RemoveTlsFront(TlsFront),
    AddCertificate(CertificateAndKey),
    RemoveCertificate(CertFingerprint),
    AddTcpFront(TcpFront),
    RemoveTcpFront(TcpFront),
    AddInstance(Instance),
    RemoveInstance(Instance),
    HttpProxy(HttpProxyConfiguration),
    TlsProxy(TlsProxyConfiguration),
    SoftStop,
    HardStop,
    Status,
}

Variants

Methods

impl Order
[src]

Trait Implementations

impl Debug for Order
[src]

Formats the value using the given formatter.

impl Clone for Order
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Hash for Order
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl Deserialize for Order
[src]

Deserialize this value given this Deserializer.

impl Serialize for Order
[src]

Serializes this value into this serializer.