[][src]Struct fil_ocl::ReadGuard

pub struct ReadGuard<V> { /* fields omitted */ }

Allows access to the data contained within a lock just like a mutex guard.

Methods

impl<V> ReadGuard<V>[src]

pub fn release_event(guard: &ReadGuard<V>) -> Option<&Event>[src]

Returns a reference to the event previously set using create_release_event on the FutureGuard which preceded this ReadGuard. The event can be manually 'triggered' by calling ...set_complete()... or used normally (as a wait event) by subsequent commands. If the event is not manually completed it will be automatically set complete when this ReadGuard is dropped.

pub fn release(guard: ReadGuard<V>) -> OrderLock<V>[src]

Triggers the release event and releases the lock held by this ReadGuard before returning the original OrderLock.

Trait Implementations

impl<V> OrderGuard<V> for ReadGuard<V>[src]

impl<V> Drop for ReadGuard<V>[src]

impl<V: Debug> Debug for ReadGuard<V>[src]

impl<V> Deref for ReadGuard<V>[src]

type Target = V

The resulting type after dereferencing.

Auto Trait Implementations

impl<V> Send for ReadGuard<V> where
    V: Send

impl<V> Sync for ReadGuard<V> where
    V: Send

impl<V> Unpin for ReadGuard<V>

impl<V> !UnwindSafe for ReadGuard<V>

impl<V> !RefUnwindSafe for ReadGuard<V>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]