pub enum Protocol {
ICMP,
TCP,
UDP,
}
Expand description
Socket Protocol
Cross platform enum of common Socket Protocols. For missing types use
the libc
and windows-sys
crates, depending on platform.
Variants§
ICMP
Internet Control Message Protocol.
TCP
Transmission Control Protocol.
UDP
User Datagram Protocol.
Trait Implementations§
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