Type Alias tc_error::TCResult

source ·
pub type TCResult<T> = Result<T, TCError>;
Expand description

A result of type T, or a TCError

Aliased Type§

enum TCResult<T> {
    Ok(T),
    Err(TCError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(TCError)

Contains the error value