Struct rustix::net::types::SocketType
source · #[repr(transparent)]pub struct SocketType(pub(crate) RawSocketType);
Expand description
SOCK_*
constants for use with socket
.
Tuple Fields§
§0: RawSocketType
Implementations§
source§impl SocketType
impl SocketType
sourcepub const fn from_raw(raw: RawSocketType) -> Self
pub const fn from_raw(raw: RawSocketType) -> Self
Constructs a SocketType
from a raw integer.
sourcepub const fn as_raw(self) -> RawSocketType
pub const fn as_raw(self) -> RawSocketType
Returns the raw integer for this SocketType
.
Trait Implementations§
source§impl Clone for SocketType
impl Clone for SocketType
source§fn clone(&self) -> SocketType
fn clone(&self) -> SocketType
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 moresource§impl Debug for SocketType
impl Debug for SocketType
source§impl<'a, Num: ArgNumber> From<SocketType> for ArgReg<'a, Num>
impl<'a, Num: ArgNumber> From<SocketType> for ArgReg<'a, Num>
source§fn from(type_: SocketType) -> Self
fn from(type_: SocketType) -> Self
Converts to this type from the input type.
source§impl Hash for SocketType
impl Hash for SocketType
source§impl PartialEq for SocketType
impl PartialEq for SocketType
source§fn eq(&self, other: &SocketType) -> bool
fn eq(&self, other: &SocketType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for SocketType
impl Eq for SocketType
impl StructuralPartialEq for SocketType
Auto Trait Implementations§
impl Freeze for SocketType
impl RefUnwindSafe for SocketType
impl Send for SocketType
impl Sync for SocketType
impl Unpin for SocketType
impl UnwindSafe for SocketType
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