Struct fizyr_rpc::UnixConfig[][src]

pub struct UnixConfig {
    pub max_body_len_read: u32,
    pub max_body_len_write: u32,
    pub max_fds_read: u32,
    pub max_fds_write: u32,
}
Expand description

Configuration for Unix datagram transports.

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 and the message itself is dropped.

Datagram transports remain usable when a message is dropped.

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.

Datagram transports remain usable when a message is dropped.

max_fds_read: u32

The maximum number of attached file descriptors when reading messages.

max_fds_write: u32

The maximum number of attached file descriptors for sending messages.

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.