Skip to main content

ShResult

Type Alias ShResult 

Source
pub type ShResult<T> = Result<T, ShError>;
Expand description

Continuum 统一结果类型

Aliased Type§

pub enum ShResult<T> {
    Ok(T),
    Err(ShError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ShError)

Contains the error value