Struct fizyr_rpc::StreamConfig[][src]

pub struct StreamConfig {
    pub max_body_len_read: u32,
    pub max_body_len_write: u32,
}
Expand description

Configuration for a byte-stream transport.

Fields

max_body_len_read: u32

The maximum body size for incoming messages.

If a message arrives with a larger body size, an error is returned. For stream sockets, that also means the stream is unusable because there is unread data left in the stream.

max_body_len_write: u32

The maximum body size for outgoing messages.

If a message is given for sending with a larger body than this size, the message is discarded and an error is returned. Stream sockets remain usable since the message header will not be sent either.

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

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.

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

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.