pub type ThreadResult<T> = Result<T, ThreadError>;
Expand description
Result type for threading operations.
Aliased Type§
pub enum ThreadResult<T> {
Ok(T),
Err(ThreadError),
}
pub type ThreadResult<T> = Result<T, ThreadError>;
Result type for threading operations.
pub enum ThreadResult<T> {
Ok(T),
Err(ThreadError),
}