Enum git_transport::client::Error [−][src]
pub enum Error {
Io {
err: Error,
},
Capabilities {
err: Error,
},
LineDecode {
err: Error,
},
ExpectedLine(&'static str),
ExpectedDataLine,
AuthenticationUnsupported,
AuthenticationRefused(&'static str),
UnsupportedProtocolVersion(BString),
Http(Error),
}Expand description
The error used in most methods of the client module
Variants
Fields of Io
err: ErrorFields of Capabilities
err: ErrorFields of LineDecode
err: ErrorExpectedLine(&'static str)Tuple Fields of ExpectedLine
0: &'static strAuthenticationRefused(&'static str)Tuple Fields of AuthenticationRefused
0: &'static strUnsupportedProtocolVersion(BString)Tuple Fields of UnsupportedProtocolVersion
0: BStringHttp(Error)Tuple Fields of Http
0: Error