pub type Result<T = Command, E = Error> = Result<T, E>;
Type alias for the most common results in this crate.
pub enum Result<T = Command, E = Error> { Ok(T), Err(E), }
Contains the success value
Contains the error value