Trait starnix_sync::LockFor

source ·
pub trait LockFor<L> {
    type Data;
    type Guard<'l>: DerefMut<Target = Self::Data>
       where Self: 'l;

    // Required method
    fn lock(&self) -> Self::Guard<'_>;
}
Expand description

Describes how to apply a lock type to the implementing type.

An implementation of LockFor<L> for some Self means that Self can be used to unlock some state that is under the lock indicated by L.

Required Associated Types§

source

type Data

The data produced by locking the state indicated by L in Self.

source

type Guard<'l>: DerefMut<Target = Self::Data> where Self: 'l

A guard providing read and write access to the data.

Required Methods§

source

fn lock(&self) -> Self::Guard<'_>

Locks Self for lock L.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, L> LockFor<L> for OrderedMutex<T, L>

§

type Data = T

§

type Guard<'a> = MutexGuard<'a, TracingWrapper<RawSyncMutex>, T> where T: 'a, L: 'a