[][src]Struct left_right::ReadHandleFactory

pub struct ReadHandleFactory<T> { /* fields omitted */ }

A type that is both Sync and Send and lets you produce new ReadHandle instances.

This serves as a handy way to distribute read handles across many threads without requiring additional external locking to synchronize access to the non-Sync ReadHandle type. Note that this internally takes a lock whenever you call ReadHandleFactory::handle, so you should not expect producing new handles rapidly to scale well.

Implementations

impl<T> ReadHandleFactory<T>[src]

pub fn handle(&self) -> ReadHandle<T>[src]

Produce a new ReadHandle to the same left-right data structure as this factory was originally produced from.

Trait Implementations

impl<T> Clone for ReadHandleFactory<T>[src]

impl<T> Debug for ReadHandleFactory<T>[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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.