pub type Result<T> = Result<T, Error>;Expand description
A specialized result type for operations that may return a WSL plugin error.
This alias simplifies the function signatures throughout the WSL plugin codebase.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error),
}