logo
pub struct AddrInfo {
    pub socktype: i32,
    pub protocol: i32,
    pub address: i32,
    pub sockaddr: SocketAddr,
    pub canonname: Option<String>,
    pub flags: i32,
}
Available on crate feature dns only.
Expand description

Struct that stores socket information, as returned by getaddrinfo.

This maps to the same definition provided by libc backends.

Fields

socktype: i32

Type of this socket.

Values are defined by the libc on your system.

protocol: i32

Protcol family for this socket.

Values are defined by the libc on your system.

address: i32

Address family for this socket (usually matches protocol family).

Values are defined by the libc on your system.

sockaddr: SocketAddr

Socket address for this socket, usually containing an actual IP Address and port.

canonname: Option<String>

If requested, this is the canonical name for this socket/host.

flags: i32

Optional bitmask arguments, usually set to zero.

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

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.