[][src]Struct tokio_lock::Lock

pub struct Lock<T, E> where
    E: StdError + From<Error> + Send + 'static, 
{ /* fields omitted */ }

This structure "locks" an object to be accessed from a single Tokio task.

Methods

impl<T, E> Lock<T, E> where
    E: StdError + From<Error> + Send + 'static, 
[src]

pub fn new() -> Self[src]

Create new instance of a Lock.

pub fn manage(
    &mut self,
    value: T
) -> impl Future<Item = (), Error = Error>
[src]

Consume value and return a Future for managing it.

pub fn get<CB, F, I>(
    &mut self,
    cb: CB
) -> impl Future<Item = I, Error = E> where
    CB: FnMut(&T) -> F + Send + 'static,
    F: Future<Item = I, Error = E> + Send + 'static,
    I: Send + 'static, 
[src]

Get the managed object and invoke cb with a reference to it.

pub fn get_mut<I, CB, F>(
    &mut self,
    cb: CB
) -> impl Future<Item = I, Error = E> where
    CB: FnMut(&mut T) -> F + Send + 'static,
    F: Future<Item = I, Error = E> + Send + 'static,
    I: Send + 'static, 
[src]

Get the managed object and invoke cb with a mutable reference to it.

pub fn stop(&mut self)[src]

Stop managing the object.

Trait Implementations

impl<T, E> Default for Lock<T, E> where
    E: StdError + From<Error> + Send + 'static, 
[src]

impl<T, E> Clone for Lock<T, E> where
    E: StdError + From<Error> + Send + 'static, 
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<T, E> Send for Lock<T, E>

impl<T, E> Sync for Lock<T, E>

Blanket Implementations

impl<T> From for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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

type Error = !

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

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

impl<T> Erased for T