Struct rs_consul::Lock[][src]

pub struct Lock<'a> {
    pub session_id: String,
    pub key: String,
    pub timeout: Duration,
    pub namespace: String,
    pub datacenter: String,
    pub value: Option<Vec<u8>>,
    pub consul: &'a Consul,
}
Expand description

Represents a lock against Consul. The lifetime of this object defines the validity of the lock against consul. When the object is dropped, the lock is attempted to be released for the next consumer.

Fields

session_id: String

The session ID of the lock.

key: String

The key for the lock.

timeout: Duration

The timeout of the session and the lock.

namespace: String

The namespace this lock exists in.

datacenter: String

The datacenter of this lock.

value: Option<Vec<u8>>

The data in this lock’s key

consul: &'a Consul

The consul client this lock was acquired using.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Attaches the provided Context to this type, returning a WithContext wrapper. Read more

Attaches the current Context to this type, returning a WithContext wrapper. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.