Struct async_consul::common::WriteOptions [−][src]
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]
fn clone(&self) -> WriteOptions[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for WriteOptions[src]
impl Default for WriteOptions[src]
fn default() -> WriteOptions[src]
Auto Trait Implementations
impl RefUnwindSafe for WriteOptions[src]
impl Send for WriteOptions[src]
impl Sync for WriteOptions[src]
impl Unpin for WriteOptions[src]
impl UnwindSafe for WriteOptions[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,