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]

[src]

Type corresponding to SOCK_STREAM

Used for protocols such as TCP.

[src]

Type corresponding to SOCK_DGRAM

Used for protocols such as UDP.

[src]

Type corresponding to SOCK_SEQPACKET

[src]

Type corresponding to SOCK_RAW

Trait Implementations

impl From<i32> for Type
[src]

[src]

Performs the conversion.

impl From<Type> for i32
[src]

[src]

Performs the conversion.

impl Copy for Type
[src]

impl Clone for Type
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Type

impl Sync for Type