pub enum ProtocolSupport {
Inbound,
Outbound,
Full,
}
Expand description
The level of support for a particular protocol.
Variants§
Inbound
The protocol is only supported for inbound requests.
Outbound
The protocol is only supported for outbound requests.
Full
The protocol is supported for inbound and outbound requests.
Implementations§
Trait Implementations§
source§impl Clone for ProtocolSupport
impl Clone for ProtocolSupport
source§fn clone(&self) -> ProtocolSupport
fn clone(&self) -> ProtocolSupport
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more