Error Set HeadError [src]

Errors

HttpConnectionClosing

The client sent 0 bytes of headers before closing the stream. This happens when a keep-alive connection is finally closed.

HttpHeadersOversize

Too many bytes of HTTP headers.

The HTTP specification suggests to respond with a 431 status code before closing the connection.

HttpRequestTruncated

Partial HTTP request was received but the connection was closed before fully receiving the headers.

ReadFailed

Transitive error occurred reading from in.

Source

pub const HeadError = error{ /// Too many bytes of HTTP headers. /// /// The HTTP specification suggests to respond with a 431 status code /// before closing the connection. HttpHeadersOversize, /// Partial HTTP request was received but the connection was closed /// before fully receiving the headers. HttpRequestTruncated, /// The client sent 0 bytes of headers before closing the stream. This /// happens when a keep-alive connection is finally closed. HttpConnectionClosing, /// Transitive error occurred reading from `in`. ReadFailed, }