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]

Type corresponding to SOCK_STREAM

Used for protocols such as TCP.

Type corresponding to SOCK_DGRAM

Used for protocols such as UDP.

Type corresponding to SOCK_SEQPACKET

Type corresponding to SOCK_RAW

Trait Implementations

impl From<i32> for Type
[src]

Performs the conversion.