Enum protocol_ftp_client::FtpError
[−]
[src]
pub enum FtpError { NotEnoughData, ProtocolError(String), GarbageData, AuthFailed, }
Error occured in parsing FTP data.
Variants
NotEnoughData
No enough data has been provided.
ProtocolError(String)
Protocol error occur, i.e. got A
while expected B
.
GarbageData
Some meaningless data.
AuthFailed
Failed 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 !=
.