Type Alias LinkResult

Source
pub type LinkResult<T> = Result<T, LinkError>;
Expand description

Result type for results where the error is a LinkError

Aliased Type§

enum LinkResult<T> {
    Ok(T),
    Err(LinkError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(LinkError)

Contains the error value