Enum protocol_ftp_client::FtpError
[−]
[src]
pub enum FtpError {
NotEnoughData,
ProtocolError(String),
GarbageData,
AuthFailed,
}Error occured in parsing FTP data.
Variants
NotEnoughDataNo enough data has been provided.
ProtocolError(String)Protocol error occur, i.e. got A while expected B.
GarbageDataSome meaningless data.
AuthFailedFailed to authenticate.
Trait Implementations
impl PartialEq for FtpError[src]
fn eq(&self, __arg_0: &FtpError) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &FtpError) -> bool
This method tests for !=.