[][src]Struct async_consul::common::WriteOptions

pub struct WriteOptions {
    pub namespace: Option<String>,
    pub datacenter: Option<String>,
    pub token: Option<String>,
    pub relay_factor: Option<u8>,
    pub timeout: Option<Duration>,
}

Options specific to write operations.

Fields

namespace: Option<String>

Namespace to execute this operation against.

NOTE: Namespaces are available only in Consul Enterprise.

datacenter: Option<String>

Datacenter to execute this operation against.

By default, operations will execute against whichever datacenter is configured at the endpoint you connect to, whether you're connected directly to a Consul cluster or to an agent.

token: Option<String>

Token to use for this operation.

By default, operations will use the agent's default token if talking to an agent, but will not use a token if talking directly to a Consul cluster.

relay_factor: Option<u8>

Used in keyring operations to force responses to be relayed back to the send through N other random nodes. Most be a value from 0 to 5 (inclusive).

timeout: Option<Duration>

Timeout for this operation overall.

Trait Implementations

impl Clone for WriteOptions[src]

impl Debug for WriteOptions[src]

impl Default for WriteOptions[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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

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.