tokio_listener

Struct UserOptions

source
#[non_exhaustive]
pub struct UserOptions { pub unix_listen_unlink: bool, pub unix_listen_chmod: Option<UnixChmodVariant>, pub unix_listen_uid: Option<u32>, pub unix_listen_gid: Option<u32>, pub sd_accept_ignore_environment: bool, pub tcp_keepalive: Option<TcpKeepaliveParams>, pub tcp_reuse_port: bool, pub recv_buffer_size: Option<usize>, pub send_buffer_size: Option<usize>, pub tcp_only_v6: bool, pub tcp_listen_backlog: Option<u32>, }
Expand description

User options that supplement listening address.

With clap crate feature, this struct can be clap(flatten)-ed directly into your primary command line parameters. With serde crate feature, it supportes serialisation and deserialisation.

Create instances with Default::default() and modify available fields.

Non-relevant options are ignored by [Listener::bind].

All options are always available regardless of current platform, but may be hidden from –help.

Disabling related crate features removes them for good though.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§unix_listen_unlink: bool

remove UNIX socket prior to binding to it

§unix_listen_chmod: Option<UnixChmodVariant>

change filesystem mode of the newly bound UNIX socket to owner, group or everybody

§unix_listen_uid: Option<u32>

change owner user of the newly bound UNIX socket to this numeric uid

§unix_listen_gid: Option<u32>

change owner group of the newly bound UNIX socket to this numeric uid

§sd_accept_ignore_environment: bool

ignore environment variables like LISTEN_PID or LISTEN_FDS and unconditionally use file descritor 3 as a socket in sd-listen or sd-listen-unix modes

§tcp_keepalive: Option<TcpKeepaliveParams>

set SO_KEEPALIVE settings for each accepted TCP connection.

Value is a colon-separated triplet of time_ms:count:interval_ms, each of which is optional.

§tcp_reuse_port: bool

Try to set SO_REUSEPORT, so that multiple processes can accept connections from the same port in a round-robin fashion

§recv_buffer_size: Option<usize>

Set socket’s SO_RCVBUF value.

§send_buffer_size: Option<usize>

Set socket’s SO_SNDBUF value.

§tcp_only_v6: bool

Set socket’s IPV6_V6ONLY to true, to avoid receiving IPv4 connections on IPv6 socket.

§tcp_listen_backlog: Option<u32>

Maximum number of pending unaccepted connections

Trait Implementations§

source§

impl Args for UserOptions

source§

fn group_id() -> Option<Id>

Report the ArgGroup::id for this set of arguments
source§

fn augment_args<'b>(__clap_app: Command) -> Command

Append to Command so it can instantiate Self via FromArgMatches::from_arg_matches_mut Read more
source§

fn augment_args_for_update<'b>(__clap_app: Command) -> Command

Append to Command so it can instantiate self via FromArgMatches::update_from_arg_matches_mut Read more
source§

impl Debug for UserOptions

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for UserOptions

source§

fn default() -> UserOptions

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

impl FromArgMatches for UserOptions

source§

fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>

Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
source§

fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>

Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
source§

fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>

Assign values from ArgMatches to self.
source§

fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>

Assign values from ArgMatches to self.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more