Struct redlock::Lock[][src]

pub struct Lock<'a> {
    pub resource: Vec<u8>,
    pub val: Vec<u8>,
    pub validity_time: usize,
    pub lock_manager: &'a RedLock,
}

Fields

resource: Vec<u8>

The resource to lock. Will be used as the key in Redis.

val: Vec<u8>

The value for this lock.

validity_time: usize

Time the lock is still valid. Should only be slightly smaller than the requested TTL.

lock_manager: &'a RedLock

Used to limit the lifetime of a lock to its lock manager.

Auto Trait Implementations

impl<'a> RefUnwindSafe for Lock<'a>

impl<'a> Send for Lock<'a>

impl<'a> Sync for Lock<'a>

impl<'a> Unpin for Lock<'a>

impl<'a> UnwindSafe for Lock<'a>

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, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,