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

pub struct NatsClientOptionsBuilder { /* fields omitted */ }

Builder for NatsClientOptions.

Methods

impl NatsClientOptionsBuilder
[src]

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

CONNECT command that will be sent upon calling the connect() method

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