#[repr(i32)]pub enum SockType {
Stream = 1,
Datagram = 2,
SeqPacket = 5,
Raw = 3,
Rdm = 4,
}
Expand description
These constants are used to specify the communication semantics
when creating a socket with socket()
Variants§
Stream = 1
Provides sequenced, reliable, two-way, connection- based byte streams. An out-of-band data transmission mechanism may be supported.
Datagram = 2
Supports datagrams (connectionless, unreliable messages of a fixed maximum length).
SeqPacket = 5
Provides a sequenced, reliable, two-way connection- based data transmission path for datagrams of fixed maximum length; a consumer is required to read an entire packet with each input system call.
Raw = 3
Provides raw network protocol access.
Rdm = 4
Provides a reliable datagram layer that does not guarantee ordering.
Trait Implementations§
impl Copy for SockType
impl Eq for SockType
impl StructuralPartialEq for SockType
Auto Trait Implementations§
impl Freeze for SockType
impl RefUnwindSafe for SockType
impl Send for SockType
impl Sync for SockType
impl Unpin for SockType
impl UnwindSafe for SockType
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