Trait brotli::enc::threading::OwnedRetriever
source · pub trait OwnedRetriever<U: Send + 'static> {
// Required methods
fn view<T, F: FnOnce(&U) -> T>(
&self,
f: F,
) -> Result<T, PoisonedThreadError>;
fn unwrap(self) -> Result<U, PoisonedThreadError>;
}
Required Methods§
fn view<T, F: FnOnce(&U) -> T>(&self, f: F) -> Result<T, PoisonedThreadError>
fn unwrap(self) -> Result<U, PoisonedThreadError>
Object Safety§
This trait is not object safe.