Struct netcore::transport::tcp::TcpTransport[][src]

pub struct TcpTransport {
    pub ttl: Option<u32>,
    pub nodelay: Option<bool>,
}
Expand description

Transport to build TCP connections

Fields

ttl: Option<u32>

TTL to set for opened sockets, or None to keep default.

nodelay: Option<bool>

TCP_NODELAY to set for opened sockets, or None to keep default.

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

Returns the “default value” for a type. Read more

The result of establishing a connection. Read more

The Error type of errors which can happen while establishing a connection.

A stream of Inbound connections and the address of the dialer. Read more

A pending Output for an inbound connection, obtained from the Listener stream. Read more

A pending Output for an outbound connection, obtained from dialing stream. Read more

Listens on the given NetworkAddress, returning a stream of incoming connections. Read more

Dials the given NetworkAddress, returning a future for a pending outbound connection.

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

Performs the conversion.

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

Turns a Transport into an abstract boxed transport.

Applies a function producing an asynchronous result to every connection created by this transport. 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.