Struct twilight_http::request::Request[][src]

pub struct Request {
    pub body: Option<Vec<u8>>,
    pub form: Option<Form>,
    pub headers: Option<HeaderMap<HeaderValue>>,
    pub method: Method,
    pub path: Path,
    pub path_str: Cow<'static, str>,
    // some fields omitted
}

Fields

body: Option<Vec<u8>>

The body of the request, if any.

form: Option<Form>

The multipart form of the request, if any.

headers: Option<HeaderMap<HeaderValue>>

The headers to set in the request, if any.

method: Method

The method of the request.

path: Path

The ratelimiting bucket path.

path_str: Cow<'static, str>

The URI path to request.

Implementations

impl Request[src]

pub fn new(
    body: Option<Vec<u8>>,
    headers: Option<HeaderMap<HeaderValue>>,
    route: Route
) -> Self
[src]

👎 Deprecated since 0.4.0:

Use Request::builder instead

Create a simple Request with basic information.

Use the RequestBuilder if you need to set a combination of configurations in the request.

pub fn builder(route: Route) -> RequestBuilder[src]

Create a new request builder.

Examples

Create a request to create a message with a content of “test” in a channel with an ID of 1:

use twilight_http::{request::Request, routing::Route};

let body = br#"{
    "content": "test"
}"#.to_vec();

let request = Request::builder(Route::CreateMessage {
    channel_id: 1,
}).body(body).build();

pub fn from_route(route: Route) -> Self[src]

Create a request from only its route information.

If you need to set additional configurations like the body then use builder.

Examples

Create a request to get a message with an ID of 2 in a channel with an ID of 1:

use twilight_http::{request::Request, routing::Route};

let request = Request::from_route(Route::GetMessage {
    channel_id: 1,
    message_id: 2,
});

pub const fn use_authorization_token(&self) -> bool[src]

Whether to use the client’s authorization token in the request.

Trait Implementations

impl Debug for Request[src]

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

Formats the value using the given formatter. Read more

impl From<(Form, HeaderMap<HeaderValue>, Route)> for Request[src]

fn from((form, headers, route): (Form, HeaderMap<HeaderValue>, Route)) -> Self[src]

Performs the conversion.

impl From<(Form, Route)> for Request[src]

fn from((form, route): (Form, Route)) -> Self[src]

Performs the conversion.

impl From<(HeaderMap<HeaderValue>, Route)> for Request[src]

fn from((headers, route): (HeaderMap<HeaderValue>, Route)) -> Self[src]

Performs the conversion.

impl From<(Vec<u8, Global>, Form, Route)> for Request[src]

fn from((body, form, route): (Vec<u8>, Form, Route)) -> Self[src]

Performs the conversion.

impl From<(Vec<u8, Global>, HeaderMap<HeaderValue>, Route)> for Request[src]

fn from(
    (body, headers, route): (Vec<u8>, HeaderMap<HeaderValue>, Route)
) -> Self
[src]

Performs the conversion.

impl From<(Vec<u8, Global>, Route)> for Request[src]

fn from((body, route): (Vec<u8>, Route)) -> Self[src]

Performs the conversion.

impl From<Route> for Request[src]

fn from(route: Route) -> Self[src]

Performs the conversion.

Auto Trait Implementations

impl RefUnwindSafe for Request

impl Send for Request

impl Sync for Request

impl Unpin for Request

impl UnwindSafe for Request

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

pub fn vzip(self) -> V