Result

Type Alias Result 

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

A result type with the error hardwired to [BmpError].

Aliased Type§

pub enum Result<T> {
    Ok(T),
    Err(BlackMagicProbeError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(BlackMagicProbeError)

Contains the error value