Struct socket2::Type [−][src]
pub struct Type(_);
Specification of communication semantics on a socket.
This is a newtype wrapper around an integer which provides a nicer API in
addition to an injection point for documentation. Convenience constructors
such as Type::stream
, Type::dgram
, etc, are provided to avoid reaching
into libc for various constants.
This type is freely interconvertible with the i32
type, however, if a raw
value needs to be provided.
Methods
impl Type
[src]
impl Type
pub fn stream() -> Type
[src]
pub fn stream() -> Type
Type corresponding to SOCK_STREAM
Used for protocols such as TCP.
pub fn dgram() -> Type
[src]
pub fn dgram() -> Type
Type corresponding to SOCK_DGRAM
Used for protocols such as UDP.
pub fn seqpacket() -> Type
[src]
pub fn seqpacket() -> Type
Type corresponding to SOCK_SEQPACKET
pub fn raw() -> Type
[src]
pub fn raw() -> Type
Type corresponding to SOCK_RAW
Trait Implementations
impl From<i32> for Type
[src]
impl From<i32> for Type
impl From<Type> for i32
[src]
impl From<Type> for i32
impl Copy for Type
[src]
impl Copy for Type
impl Clone for Type
[src]
impl Clone for Type