#[non_exhaustive]#[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 (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future 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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)