[][src]Struct singleflight::Group

pub struct Group<T> where
    T: Clone + Debug
{ /* fields omitted */ }

Group represents a class of work and creates a space in which units of work can be executed with duplicate suppression.

Methods

impl<T> Group<T> where
    T: Clone + Debug
[src]

pub fn new() -> Group<T>[src]

Create a new Group to do work with.

pub fn work<F>(&self, key: &str, func: F) -> T where
    F: Fn() -> T, 
[src]

Execute and return the Result for a given function, making sure that only one operation is in-flight at a given moment. If a duplicate call comes in, that caller will wait until the original call completes and return the same result.

Trait Implementations

impl<T: Default> Default for Group<T> where
    T: Clone + Debug
[src]

Auto Trait Implementations

impl<T> Send for Group<T> where
    T: Send

impl<T> Sync for Group<T> where
    T: Send

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?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

The type returned in the event of a conversion error.

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

impl<T> Erased for T