Enum amqpr_codec::frame::method::connection::ConnectionClass
[−]
[src]
pub enum ConnectionClass {
Start(StartMethod),
StartOk(StartOkMethod),
Secure(SecureMethod),
SecureOk(SecureOkMethod),
Tune(TuneMethod),
TuneOk(TuneOkMethod),
Open(OpenMethod),
OpenOk(OpenOkMethod),
Close(CloseMethod),
CloseOk,
Blocked(BlockedMethod),
Unblocked,
}Variants
Start(StartMethod)StartOk(StartOkMethod)Secure(SecureMethod)SecureOk(SecureOkMethod)Tune(TuneMethod)TuneOk(TuneOkMethod)Open(OpenMethod)OpenOk(OpenOkMethod)Close(CloseMethod)CloseOkBlocked(BlockedMethod)Unblocked
Methods
impl ConnectionClass[src]
fn start(&self) -> Option<&StartMethod>[src]
fn start_ok(&self) -> Option<&StartOkMethod>[src]
fn secure(&self) -> Option<&SecureMethod>[src]
fn secure_ok(&self) -> Option<&SecureOkMethod>[src]
fn tune(&self) -> Option<&TuneMethod>[src]
fn tune_ok(&self) -> Option<&TuneOkMethod>[src]
fn open(&self) -> Option<&OpenMethod>[src]
fn open_ok(&self) -> Option<&OpenOkMethod>[src]
fn close(&self) -> Option<&CloseMethod>[src]
fn close_ok(&self) -> Option<()>[src]
fn blocked(&self) -> Option<&BlockedMethod>[src]
fn unblocked(&self) -> Option<()>[src]
Trait Implementations
impl PartialEq for ConnectionClass[src]
fn eq(&self, __arg_0: &ConnectionClass) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &ConnectionClass) -> bool[src]
This method tests for !=.
impl Clone for ConnectionClass[src]
fn clone(&self) -> ConnectionClass[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more