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 Typepub fn stream() -> Type[src]
pub fn stream() -> TypeType corresponding to SOCK_STREAM
Used for protocols such as TCP.
pub fn dgram() -> Type[src]
pub fn dgram() -> TypeType corresponding to SOCK_DGRAM
Used for protocols such as UDP.
pub fn seqpacket() -> Type[src]
pub fn seqpacket() -> TypeType corresponding to SOCK_SEQPACKET
pub fn raw() -> Type[src]
pub fn raw() -> TypeType corresponding to SOCK_RAW
Trait Implementations
impl From<i32> for Type[src]
impl From<i32> for Typeimpl From<Type> for i32[src]
impl From<Type> for i32impl Copy for Type[src]
impl Copy for Typeimpl Clone for Type[src]
impl Clone for Type