pub enum Protocol {
Unspecified = 0,
Stream = 1,
Datagram = 2,
}
Expand description
The supported Protocol
s for a PROXY protocol header.
Variants§
Unspecified = 0
The protocol is unspecified.
Stream = 1
The protocol is a stream.
Datagram = 2
The protocol is a datagram.
Trait Implementations§
Source§impl BitOr<AddressFamily> for Protocol
impl BitOr<AddressFamily> for Protocol
Source§impl BitOr<Protocol> for AddressFamily
impl BitOr<Protocol> for AddressFamily
impl Copy for Protocol
impl Eq for Protocol
impl StructuralPartialEq for Protocol
Auto Trait Implementations§
impl Freeze for Protocol
impl RefUnwindSafe for Protocol
impl Send for Protocol
impl Sync for Protocol
impl Unpin for Protocol
impl UnwindSafe for Protocol
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more