pub type Result<T> = Result<T, Error>;
Expand description
Library general result type.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error),
}
Variants§
Trait Implementations§
Source§impl From<CommandArg> for Result<String>
impl From<CommandArg> for Result<String>
Source§fn from(bs: CommandArg) -> Self
fn from(bs: CommandArg) -> Self
Converts to this type from the input type.