Enum fastly::http::request::SendErrorCause

source ·
#[non_exhaustive]
pub enum SendErrorCause {
Show 23 variants DnsTimeout, DnsError { rcode: Option<u16>, info_code: Option<u16>, }, DestinationNotFound, DestinationUnavailable, DestinationIpUnroutable, ConnectionRefused, ConnectionTerminated, ConnectionTimeout, ConnectionLimitReached, TlsProtocolError, TlsCertificateError, TlsAlertReceived { alert_id: Option<u8>, }, TlsConfigurationError, HttpIncompleteResponse, HttpResponseHeaderSectionTooLarge, HttpResponseBodyTooLarge, HttpResponseTimeout, HttpResponseStatusInvalid, HttpUpgradeFailed, HttpProtocolError, HttpRequestCacheKeyInvalid, HttpRequestUriInvalid, InternalError(Option<FastlyStatus>),
}
Expand description

The reason that a request sent to a backend failed.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

DnsTimeout

The system encountered a timeout when trying to find an IP address for the backend hostname.

§

DnsError

The system encountered a DNS error when trying to find an IP address for the backend hostname. The fields $dns_error_rcode and $dns_error_info_code may be set in the $send_error_detail.

Fields

§rcode: Option<u16>

The DNS rcode, if available.

§info_code: Option<u16>

The DNS info-code, if available.

§

DestinationNotFound

The system cannot determine which backend to use, or the specified backend was invalid.

§

DestinationUnavailable

The system considers the backend to be unavailable; e.g., recent attempts to communicate with it may have failed, or a health check may indicate that it is down.

§

DestinationIpUnroutable

The system cannot find a route to the next-hop IP address.

§

ConnectionRefused

The system’s connection to the backend was refused.

§

ConnectionTerminated

The system’s connection to the backend was closed before a complete response was received.

§

ConnectionTimeout

The system’s attempt to open a connection to the backend timed out.

§

ConnectionLimitReached

The system is configured to limit the number of connections it has to the backend, and that limit has been exceeded.

§

TlsProtocolError

The system encountered a TLS error when communicating with the backend, either during the handshake or afterwards.

§

TlsCertificateError

The system encountered an error when verifying the certificate presented by the backend.

§

TlsAlertReceived

The system received a TLS alert from the backend. The field $tls_alert_id may be set in the $send_error_detail.

Fields

§alert_id: Option<u8>

The TLS alert value, if available.

§

TlsConfigurationError

The system encountered an error with the backend TLS configuration.

§

HttpIncompleteResponse

The system received an incomplete response to the request from the backend.

§

HttpResponseHeaderSectionTooLarge

The system received a response to the request whose header section was considered too large.

§

HttpResponseBodyTooLarge

The system received a response to the request whose body was considered too large.

§

HttpResponseTimeout

The system reached a configured time limit waiting for the complete response.

§

HttpResponseStatusInvalid

The system received a response to the request whose status code or reason phrase was invalid.

§

HttpUpgradeFailed

The process of negotiating an upgrade of the HTTP version between the system and backend failed.

§

HttpProtocolError

The system encountered an HTTP protocol error when communicating with the backend. This error will only be used when a more specific one is not defined.

§

HttpRequestCacheKeyInvalid

An invalid cache key was provided for the request.

§

HttpRequestUriInvalid

An invalid URI was provided for the request.

§

InternalError(Option<FastlyStatus>)

The system encountered an unexpected internal error.

Trait Implementations§

source§

impl Debug for SendErrorCause

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for SendErrorCause

source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for SendErrorCause

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.