Type Alias mseed::MSResult

source ·
pub type MSResult<T> = Result<T, MSError>;
Expand description

A specialized library Result type.

Aliased Type§

enum MSResult<T> {
    Ok(T),
    Err(MSError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(MSError)

Contains the error value