Type Alias updatehub_sdk::Result

source ·
pub type Result<A> = Result<A, Error>;
Expand description

Type alias of Result where the Err is a updatehub_sdk::Error.

Aliased Type§

enum Result<A> {
    Ok(A),
    Err(Error),
}

Variants§

§1.0.0

Ok(A)

Contains the success value

§1.0.0

Err(Error)

Contains the error value