Type Alias inquire::error::InquireResult

source ·
pub type InquireResult<T> = Result<T, InquireError>;
Expand description

Result type where errors are of type InquireError

Aliased Type§

enum InquireResult<T> {
    Ok(T),
    Err(InquireError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(InquireError)

Contains the error value