[][src]Struct ratsio::nats_client::NatsClientOptionsBuilder

pub struct NatsClientOptionsBuilder { /* fields omitted */ }

Builder for NatsClientOptions.

Methods

impl NatsClientOptionsBuilder[src]

pub fn username<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self[src]

Cluster username, can be overwritten by host url nats://:@:

pub fn password<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self[src]

Cluster password, can be overwritten by host url nats://:@:

pub fn auth_token<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self[src]

Cluster auth_token

pub fn tls_required<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self[src]

Whether TLS is required.

pub fn verbose<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self[src]

verbosity, default true

pub fn pedantic<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self[src]

pedantic, default false

pub fn echo<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self[src]

pedantic, default true

pub fn name<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self[src]

Optional client name

pub fn cluster_uris<VALUE: Into<UriVec>>(&mut self, value: VALUE) -> &mut Self[src]

Cluster URI in the IP:PORT format

pub fn ping_interval<VALUE: Into<u16>>(&mut self, value: VALUE) -> &mut Self[src]

Ping interfval in seconds

pub fn ping_max_out<VALUE: Into<u16>>(&mut self, value: VALUE) -> &mut Self[src]

No of unsuccessful pings before the connection is deemed disconnected.

pub fn subscribe_on_reconnect<VALUE: Into<bool>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

If we should re-subscribe all subscriptions on re-connection. If you don't want re-subscription, add a reconnect_handler and do your thing there.

pub fn ensure_connect<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self[src]

If connect fails, keep trying, forever,

pub fn reconnect_timeout<VALUE: Into<u64>>(&mut self, value: VALUE) -> &mut Self[src]

Time between connection retries

pub fn user_jwt<VALUE: Into<Option<UserJWT>>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

When using NATS 2.x decentralized security, supply a user JWT for authN/authZ

pub fn build(&self) -> Result<NatsClientOptions, String>[src]

Builds a new NatsClientOptions.

Errors

If a required field has not been initialized.

Trait Implementations

impl Clone for NatsClientOptionsBuilder[src]

impl Default for NatsClientOptionsBuilder[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Clear for T where
    T: InitializableFromZeroed + ?Sized

impl<T> From<T> for T[src]

impl<T> InitializableFromZeroed for T where
    T: Default

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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