Type Alias json::Result

source ·
pub type Result<T> = Result<T, Cow<'static, str>>;

Aliased Type§

enum Result<T> {
    Ok(T),
    Err(Cow<'static, str>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Cow<'static, str>)

Contains the error value