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
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
Methods
impl Order
[src]
fn get_topics(&self) -> Vec<Topic>
Trait Implementations
impl Debug for Order
[src]
impl Clone for Order
[src]
fn clone(&self) -> Order
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl PartialEq for Order
[src]
fn eq(&self, __arg_0: &Order) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Order) -> bool
This method tests for !=
.
impl Eq for Order
[src]
impl Hash for Order
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0
Feeds a slice of this type into the state provided.
impl Deserialize for Order
[src]
fn deserialize<D>(deserializer: &mut D) -> Result<Order, D::Error> where D: Deserializer
Deserialize this value given this Deserializer
.
impl Serialize for Order
[src]
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error> where S: Serializer
Serializes this value into this serializer.