Skip to main content

Args

Struct Args 

Source
pub struct Args {
Show 43 fields pub transport: String, pub encryption_key: String, pub http_api_url: String, pub http_retries: u32, pub username: String, pub password: String, pub tcp_server_address: String, pub tcp_reconnection_enabled: bool, pub tcp_reconnection_max_retries: Option<u32>, pub tcp_reconnection_interval: String, pub tcp_reconnection_reestablish_after: String, pub tcp_heartbeat_interval: String, pub tcp_tls_enabled: bool, pub tcp_tls_domain: String, pub tcp_tls_ca_file: Option<String>, pub tcp_nodelay: bool, pub quic_client_address: String, pub quic_server_address: String, pub quic_server_name: String, pub quic_reconnection_enabled: bool, pub quic_reconnection_max_retries: Option<u32>, pub quic_reconnection_interval: String, pub quic_reconnection_reestablish_after: String, pub quic_max_concurrent_bidi_streams: u64, pub quic_datagram_send_buffer_size: u64, pub quic_initial_mtu: u16, pub quic_send_window: u64, pub quic_receive_window: u64, pub quic_response_buffer_size: u64, pub quic_keep_alive_interval: u64, pub quic_max_idle_timeout: u64, pub quic_validate_certificate: bool, pub quic_heartbeat_interval: String, pub websocket_server_address: String, pub websocket_reconnection_enabled: bool, pub websocket_reconnection_max_retries: Option<u32>, pub websocket_reconnection_interval: String, pub websocket_reconnection_reestablish_after: String, pub websocket_heartbeat_interval: String, pub websocket_tls_enabled: bool, pub websocket_tls_domain: String, pub websocket_tls_ca_file: Option<String>, pub websocket_tls_validate_certificate: bool,
}
Expand description

The arguments used by the ClientProviderConfig to create a client.

Fields§

§transport: String

The transport to use. Valid values are quic, http, tcp and ws

§encryption_key: String

Optional encryption key for the message payload used by the client

§http_api_url: String

The optional API URL for the HTTP transport

§http_retries: u32

The optional number of retries for the HTTP transport

§username: String§password: String§tcp_server_address: String

The optional client address for the TCP transport

§tcp_reconnection_enabled: bool

The optional number of maximum reconnect retries for the TCP transport

§tcp_reconnection_max_retries: Option<u32>

The optional number of maximum reconnect retries for the TCP transport

§tcp_reconnection_interval: String

The optional reconnect interval for the TCP transport

§tcp_reconnection_reestablish_after: String

The optional re-establish after last connection interval for TCP

§tcp_heartbeat_interval: String

The optional heartbeat interval for the TCP transport

§tcp_tls_enabled: bool

Flag to enable TLS for the TCP transport

§tcp_tls_domain: String

The optional TLS domain for the TCP transport

§tcp_tls_ca_file: Option<String>

The optional CA file for the TCP transport

§tcp_nodelay: bool

Disable nodelay for the TCP transport

§quic_client_address: String

The optional client address for the QUIC transport

§quic_server_address: String

The optional server address for the QUIC transport

§quic_server_name: String

The optional server name for the QUIC transport

§quic_reconnection_enabled: bool

The optional number of maximum reconnect retries for the QUIC transport

§quic_reconnection_max_retries: Option<u32>

The optional number of maximum reconnect retries for the QUIC transport

§quic_reconnection_interval: String

The optional reconnect interval for the QUIC transport

§quic_reconnection_reestablish_after: String

The optional re-establish after last connection interval for QUIC

§quic_max_concurrent_bidi_streams: u64

The optional maximum number of concurrent bidirectional streams for QUIC

§quic_datagram_send_buffer_size: u64

The optional datagram send buffer size for QUIC

§quic_initial_mtu: u16

The optional initial MTU for QUIC

§quic_send_window: u64

The optional send window for QUIC

§quic_receive_window: u64

The optional receive window for QUIC

§quic_response_buffer_size: u64

The optional response buffer size for QUIC

§quic_keep_alive_interval: u64

The optional keep alive interval for QUIC

§quic_max_idle_timeout: u64

The optional maximum idle timeout for QUIC

§quic_validate_certificate: bool

Flag to enable certificate validation for QUIC

§quic_heartbeat_interval: String

The optional heartbeat interval for the QUIC transport

§websocket_server_address: String

The optional server address for the WebSocket transport

§websocket_reconnection_enabled: bool

The optional number of maximum reconnect retries for the WebSocket transport

§websocket_reconnection_max_retries: Option<u32>

The optional number of maximum reconnect retries for the WebSocket transport

§websocket_reconnection_interval: String

The optional reconnect interval for the WebSocket transport

§websocket_reconnection_reestablish_after: String

The optional re-establish after last connection interval for WebSocket

§websocket_heartbeat_interval: String

The optional heartbeat interval for the WebSocket transport

§websocket_tls_enabled: bool

The optional TLS enabled for the WebSocket transport

§websocket_tls_domain: String

The optional TLS domain for the WebSocket transport

§websocket_tls_ca_file: Option<String>

The optional TLS CA file for the WebSocket transport

§websocket_tls_validate_certificate: bool

The optional TLS validate certificate for the WebSocket transport

Implementations§

Trait Implementations§

Source§

impl Clone for Args

Source§

fn clone(&self) -> Args

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Args

Source§

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

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

impl Default for Args

Source§

fn default() -> Self

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

impl From<Vec<ArgsOptional>> for Args

Source§

fn from(args_set: Vec<ArgsOptional>) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl Freeze for Args

§

impl RefUnwindSafe for Args

§

impl Send for Args

§

impl Sync for Args

§

impl Unpin for Args

§

impl UnsafeUnpin for Args

§

impl UnwindSafe for Args

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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