Skip to main content

Outcome

Type Alias Outcome 

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

What an entry’s Win32 call produced: its result, or the raw code.

Aliased Type§

pub enum Outcome<T> {
    Ok(T),
    Err(Win32Error),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Win32Error)

Contains the error value