Error Set ExpectContinueError [src]

Errors

HttpExpectationFailed

The client sent an expect HTTP header value other than "100-continue".

WriteFailed

Failed to write "HTTP/1.1 100 Continue\r\n\r\n" to the stream.

Source

pub const ExpectContinueError = error{ /// Failed to write "HTTP/1.1 100 Continue\r\n\r\n" to the stream. WriteFailed, /// The client sent an expect HTTP header value other than /// "100-continue". HttpExpectationFailed, }