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