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
Io
Fields
err: ErrorCapabilities
Fields
err: ErrorLineDecode
Fields
err: ErrorExpectedLine(&'static str)
Tuple Fields
0: &'static strExpectedDataLine
AuthenticationUnsupported
AuthenticationRefused(&'static str)
Tuple Fields
0: &'static strUnsupportedProtocolVersion(BString)
Tuple Fields
0: BStringHttp(Error)
Tuple Fields
0: Error