Enum ftp::types::FtpError [] [src]

pub enum FtpError {
    ConnectionError(Error),
    SecureError(String),
    InvalidResponse(String),
    InvalidAddress(AddrParseError),
}

FtpError is a library-global error type to describe the different kinds of errors that might occur while using FTP.

Variants

Trait Implementations

impl Debug for FtpError
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for FtpError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for FtpError
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

Auto Trait Implementations

impl Send for FtpError

impl Sync for FtpError