pub type Result<T> = Result<T, QsshError>;
pub enum Result<T> { Ok(T), Err(QsshError), }
Contains the success value
Contains the error value