Type Alias ThreadResult

Source
pub type ThreadResult<T> = Result<T, ThreadError>;

Aliased Type§

pub enum ThreadResult<T> {
    Ok(T),
    Err(ThreadError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ThreadError)

Contains the error value