[][src]Trait brotli::enc::threading::Joinable

pub trait Joinable<T: Send + 'static, U: Send + 'static>: Sized {
    fn join(self) -> Result<T, U>;
}

Required methods

fn join(self) -> Result<T, U>

Loading content...

Implementors

impl<ReturnValue: Send + 'static, ExtraInput: Send + 'static, Alloc: BrotliAlloc + Send + 'static, U: Send + 'static + Sync> Joinable<ReturnValue, BrotliEncoderThreadError> for WorkerJoinable<ReturnValue, ExtraInput, Alloc, U>[src]

impl<T: Send + 'static, U: Send + 'static + AnyBoxConstructor> Joinable<T, U> for MultiThreadedJoinable<T, U>[src]

impl<T: Send + 'static, U: Send + 'static> Joinable<T, U> for SingleThreadedJoinable<T, U>[src]

Loading content...