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

pub struct NatsClientOptionsBuilder { /* fields omitted */ }

Builder for NatsClientOptions.

Methods

impl NatsClientOptionsBuilder
[src]

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

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

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

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

pub fn auth_token<VALUE: Into<Option<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<Option<String>>>(&mut self, value: VALUE) -> &mut Self
[src]

Optional client name

pub fn cluster_uris<VALUE: Into<Vec<String>>>(
    &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 build(&self) -> Result<NatsClientOptions, String>
[src]

Builds a new NatsClientOptions.

Errors

If a required field has not been initialized.

Trait Implementations

impl Default for NatsClientOptionsBuilder
[src]

impl Clone for NatsClientOptionsBuilder
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self