pub type Result<T> = Result<T, FtpError>;
A shorthand for a Result whose error type is always an FtpError.
pub enum Result<T> { Ok(T), Err(FtpError), }
Contains the success value
Contains the error value