Struct ListenConfig

Source
pub struct ListenConfig {
    pub initial_worker_threads: usize,
    pub max_worker_threads: usize,
    pub idle_timeout: u64,
    pub stop_listening: Option<Arc<AtomicBool>>,
}
Expand description

ListenConfig specifies the configuration parameters for varlink::listen

Examples:

let l = varlink::ListenConfig::default();
assert_eq!(l.initial_worker_threads, 1);
assert_eq!(l.max_worker_threads, 100);
assert_eq!(l.idle_timeout, 0);
assert!(l.stop_listening.is_none());

Fields§

§initial_worker_threads: usize

The amount of initial worker threads

§max_worker_threads: usize

The maximum amount of worker threads

§idle_timeout: u64

Time in seconds for the server to quit, when it is idle

§stop_listening: Option<Arc<AtomicBool>>

An optional AtomicBool as a global flag, which lets the server stop accepting new connections, when set to true

Trait Implementations§

Source§

impl Default for ListenConfig

Source§

fn default() -> Self

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

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, 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, 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.