Struct rustix::net::types::AddressFamily

source ·
#[repr(transparent)]
pub struct AddressFamily(pub(crate) RawAddressFamily);
Expand description

AF_* constants for use with socket, socket_with, and socketpair.

Tuple Fields§

§0: RawAddressFamily

Implementations§

source§

impl AddressFamily

source

pub const UNSPEC: Self = _

AF_UNSPEC

source

pub const INET: Self = _

AF_INET

References
source

pub const INET6: Self = _

AF_INET6

References

AF_NETLINK

References
source

pub const UNIX: Self = _

AF_UNIX, aka AF_LOCAL

source

pub const AX25: Self = _

AF_AX25

source

pub const IPX: Self = _

AF_IPX

source

pub const APPLETALK: Self = _

AF_APPLETALK

source

pub const NETROM: Self = _

AF_NETROM

source

pub const BRIDGE: Self = _

AF_BRIDGE

source

pub const ATMPVC: Self = _

AF_ATMPVC

source

pub const X25: Self = _

AF_X25

source

pub const ROSE: Self = _

AF_ROSE

source

pub const DECnet: Self = _

AF_DECnet

source

pub const NETBEUI: Self = _

AF_NETBEUI

source

pub const SECURITY: Self = _

AF_SECURITY

source

pub const KEY: Self = _

AF_KEY

source

pub const PACKET: Self = _

AF_PACKET

References
source

pub const ASH: Self = _

AF_ASH

source

pub const ECONET: Self = _

AF_ECONET

source

pub const ATMSVC: Self = _

AF_ATMSVC

source

pub const RDS: Self = _

AF_RDS

source

pub const SNA: Self = _

AF_SNA

source

pub const IRDA: Self = _

AF_IRDA

source

pub const PPPOX: Self = _

AF_PPPOX

source

pub const WANPIPE: Self = _

AF_WANPIPE

source

pub const LLC: Self = _

AF_LLC

source

pub const CAN: Self = _

AF_CAN

source

pub const TIPC: Self = _

AF_TIPC

source

pub const BLUETOOTH: Self = _

AF_BLUETOOTH

source

pub const IUCV: Self = _

AF_IUCV

source

pub const RXRPC: Self = _

AF_RXRPC

source

pub const ISDN: Self = _

AF_ISDN

source

pub const PHONET: Self = _

AF_PHONET

source

pub const IEEE802154: Self = _

AF_IEEE802154

source

pub const XDP: Self = _

AF_XDP

source

pub const fn from_raw(raw: RawAddressFamily) -> Self

Constructs a AddressFamily from a raw integer.

source

pub const fn as_raw(self) -> RawAddressFamily

Returns the raw integer for this AddressFamily.

Trait Implementations§

source§

impl Clone for AddressFamily

source§

fn clone(&self) -> AddressFamily

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AddressFamily

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a, Num: ArgNumber> From<AddressFamily> for ArgReg<'a, Num>

source§

fn from(family: AddressFamily) -> Self

Converts to this type from the input type.
source§

impl Hash for AddressFamily

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<AddressFamily> for AddressFamily

source§

fn eq(&self, other: &AddressFamily) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for AddressFamily

source§

impl Eq for AddressFamily

source§

impl StructuralEq for AddressFamily

source§

impl StructuralPartialEq for AddressFamily

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.