Enum protocol_ftp_client::FtpError [] [src]

pub enum FtpError {
    NotEnoughData,
    ProtocolError(String),
    GarbageData,
    AuthFailed,
}

Error occured in parsing FTP data.

Variants

No enough data has been provided.

Protocol error occur, i.e. got A while expected B.

Some meaningless data.

Failed to authenticate.

Trait Implementations

impl PartialEq for FtpError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for FtpError
[src]

Formats the value using the given formatter. Read more

impl Debug for FtpError
[src]

Formats the value using the given formatter.