pub struct EventCacheStoreLockGuard<'a> { /* private fields */ }
Expand description
An RAII implementation of a “scoped lock” of an EventCacheStoreLock
.
When this structure is dropped (falls out of scope), the lock will be
unlocked.
Trait Implementations§
source§impl<'a> Debug for EventCacheStoreLockGuard<'a>
Available on non-tarpaulin_include
only.
impl<'a> Debug for EventCacheStoreLockGuard<'a>
Available on non-
tarpaulin_include
only.source§impl<'a> Deref for EventCacheStoreLockGuard<'a>
impl<'a> Deref for EventCacheStoreLockGuard<'a>
§type Target = dyn EventCacheStore<Error = EventCacheStoreError>
type Target = dyn EventCacheStore<Error = EventCacheStoreError>
The resulting type after dereferencing.
Auto Trait Implementations§
impl<'a> Freeze for EventCacheStoreLockGuard<'a>
impl<'a> !RefUnwindSafe for EventCacheStoreLockGuard<'a>
impl<'a> Send for EventCacheStoreLockGuard<'a>
impl<'a> Sync for EventCacheStoreLockGuard<'a>
impl<'a> Unpin for EventCacheStoreLockGuard<'a>
impl<'a> !UnwindSafe for EventCacheStoreLockGuard<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CompatExt for T
impl<T> CompatExt for T
source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more