logo
pub struct AddrInfoHints {
    pub socktype: i32,
    pub protocol: i32,
    pub address: i32,
    pub flags: i32,
}
Available on crate feature dns only.
Expand description

A struct used as the hints argument to getaddrinfo.

Fields

socktype: i32

Type of this socket. 0 for none.

Values are defined by the libc on your system.

protocol: i32

Protcol for this socket. 0 for none.

Values are defined by the libc on your system.

address: i32

Address family for this socket. 0 for none.

Values are defined by the libc on your system.

flags: i32

Optional bitmask arguments. Bitwise OR bitflags to change the behaviour of getaddrinfo. 0 for none.

Values are defined by the libc on your system.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Generate a blank AddrInfoHints struct, so new values can easily be specified.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.