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),
}pub type Outcome<T> = Result<T, Win32Error>;What an entry’s Win32 call produced: its result, or the raw code.
pub enum Outcome<T> {
Ok(T),
Err(Win32Error),
}