Struct fastly::handle::RequestHandle[][src]

#[repr(transparent)]
pub struct RequestHandle { /* fields omitted */ }
Expand description

The low-level interface to HTTP requests.

For most applications, you should use Request instead of this interface. See the top-level handle documentation for more details.

Getting the client request

Call RequestHandle::from_client() to get the client request being handled by this execution of the Compute@Edge program.

Creation and conversion

New requests can be created programmatically with RequestHandle::new(). In addition, you can convert to and from Request using Request::from_handles() and Request::into_handles().

Sending backend requests

Requests can be sent to a backend in blocking or asynchronous fashion using send(), send_async(), or send_async_streaming().

Implementations

An invalid handle.

This is primarily useful to represent uninitialized values when using the interfaces in fastly_sys.

Returns true if the request handle is valid.

Returns true if the request handle is invalid.

Get a handle to the client request being handled by this execution of the Compute@Edge program.

Panics

This method panics if the client request has already been retrieved by this method, client_request_and_body(), or Request::from_client().

Acquire a new request handle.

By default, the request will have a GET method, a URL of /, and empty headers.

Read the request’s header names via a buffer of the provided size.

If there is a header name that is longer than buf_size, this will return a BufferSizeError; you can retry with a larger buffer size if necessary.

Get the header values for the given name via a buffer of the provided size.

If there is a header value that is longer than the buffer, this will return a BufferSizeError; you can retry with a larger buffer size if necessary.

Examples

Collect all the header values into a Vec:

let name = HeaderName::from_static("My-App-Header");
let buf_size = 128;
let header_values: Vec<HeaderValue> = request
    .get_header_values(&name, buf_size)
    .collect::<Result<Vec<HeaderValue>, _>>()?;

To try again with a larger buffer if the first call fails, you can use unwrap_or_else():

let name = HeaderName::from_static("My-App-Header");
let buf_size = 128;

// Collect header values into a `Vec<HeaderValue>`, with a buffer size of `128`.
// If the first call fails, print our error and then try to collect header values
// again. The second call will use a larger buffer size of `1024`.
let header_values: Vec<HeaderValue> = request
    .get_header_values(&name, buf_size)
    .collect::<Result<_, _>>()
    .unwrap_or_else(|err: BufferSizeError| {
        let larger_buf_size = 1024;
        request
            .get_header_values(&name, larger_buf_size)
            .collect::<Result<_, _>>()
            .unwrap()
    });

Set the values for the given header name, replacing any headers that previously existed for that name.

Get the value of a header, or None if the header is not present.

If there are multiple values for the header, only one is returned. See get_header_values() if you need to get all of the values.

If the value is longer than max_len, this will return a BufferSizeError; you can retry with a larger buffer size if necessary.

Set a request header to the given value, discarding any previous values for the given header name.

Add a request header with given value.

Unlike insert_header(), this does not discard existing values for the same header name.

Remove all request headers of the given name, and return whether any headers were removed.

Get the HTTP version of this request.

Set the HTTP version of this request.

Get the request method.

If the method is longer than max_length, this will return a BufferSizeError; you can retry with a larger buffer size if necessary.

Set the request method.

Get the request URL.

If the URL is longer than max_length, this will return a BufferSizeError; you can retry with a larger buffer size if necessary.

👎 Deprecated since 0.6.0:

replaced by RequestHandle::get_url()

Get the request Uri.

Deprecated in favor of RequestHandle::get_url().

Set the request URL.

👎 Deprecated since 0.6.0:

replaced by RequestHandle::set_url()

Set the request Uri.

Deprecated in favor of RequestHandle::set_url().

Send the request to the given backend server, and return once the response headers have been received, or an error occurs.

Send a request asynchronously via the given backend, returning as soon as the request has begun sending.

The resulting PendingRequestHandle can be evaluated using PendingRequestHandle::poll(), PendingRequestHandle::wait(), or select_handles(). It can also be discarded if the request was sent for effects it might have, and the response is unimportant.

Send a request asynchronously via the given backend, and return a StreamingBodyHandle to allow continued writes to the request body.

The resulting StreamingBodyHandle must be dropped in order to finish sending the request.

Set the cache override behavior for this request.

This setting will override any cache directive headers returned in response to this request.

Trait Implementations

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Set the cache key to be used when attempting to satisfy this request from a cached response.

Stability

This is part of an experimental API that is subject to change or removal even in minor versions of this crate.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.