Struct tp_runtime::offchain::http::Request[][src]

pub struct Request<'a, T = Vec<&'static [u8]>> {
    pub method: Method,
    pub url: &'a str,
    pub body: T,
    pub deadline: Option<Timestamp>,
    // some fields omitted
}

An HTTP request builder.

Fields

method: Method

Request method

url: &'a str

Request URL

body: T

Body of the request

deadline: Option<Timestamp>

Deadline to finish sending the request

Implementations

impl<'a> Request<'a>[src]

pub fn get(url: &'a str) -> Self[src]

Start a simple GET request

impl<'a, T> Request<'a, T>[src]

pub fn post(url: &'a str, body: T) -> Self[src]

Create new POST request with given body.

impl<'a, T: Default> Request<'a, T>[src]

pub fn new(url: &'a str) -> Self[src]

Create a new Request builder with the given URL.

pub fn method(self, method: Method) -> Self[src]

Change the method of the request

pub fn url(self, url: &'a str) -> Self[src]

Change the URL of the request.

pub fn body(self, body: T) -> Self[src]

Set the body of the request.

pub fn add_header(self, name: &str, value: &str) -> Self[src]

Add a header.

pub fn deadline(self, deadline: Timestamp) -> Self[src]

Set the deadline of the request.

impl<'a, I: AsRef<[u8]>, T: IntoIterator<Item = I>> Request<'a, T>[src]

pub fn send(self) -> Result<PendingRequest, HttpError>[src]

Send the request and return a handle.

Err is returned in case the deadline is reached or the request timeouts.

Trait Implementations

impl<'a, T: Clone> Clone for Request<'a, T>[src]

impl<'a, T> Debug for Request<'a, T> where
    T: Debug
[src]

impl<T: Default> Default for Request<'static, T>[src]

impl<'a, T: Eq> Eq for Request<'a, T>[src]

impl<'a, T: PartialEq> PartialEq<Request<'a, T>> for Request<'a, T>[src]

impl<'a, T> StructuralEq for Request<'a, T>[src]

impl<'a, T> StructuralPartialEq for Request<'a, T>[src]

Auto Trait Implementations

impl<'a, T> RefUnwindSafe for Request<'a, T> where
    T: RefUnwindSafe

impl<'a, T> Send for Request<'a, T> where
    T: Send

impl<'a, T> Sync for Request<'a, T> where
    T: Sync

impl<'a, T> Unpin for Request<'a, T> where
    T: Unpin

impl<'a, T> UnwindSafe for Request<'a, T> where
    T: UnwindSafe

Blanket Implementations

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

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

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

impl<T> CheckedConversion for T[src]

impl<T> Clear for T where
    T: Default + Eq + PartialEq<T>, 
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<T> DynClone for T where
    T: Clone
[src]

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

impl<T> Instrument for T[src]

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

impl<T, Outer> IsWrappedBy<Outer> for T where
    T: From<Outer>,
    Outer: AsRef<T> + AsMut<T> + From<T>, 
[src]

pub fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

pub fn from_mut(outer: &mut Outer) -> &mut T[src]

Get a mutable reference to the inner from the outer.

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeRefUnwindSafe for T where
    T: RefUnwindSafe

impl<T> Member for T where
    T: 'static + Send + Sync + Debug + Eq + PartialEq<T> + Clone
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SaturatedConversion for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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.

impl<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

impl<T, S> UniqueSaturatedInto<T> for S where
    T: Bounded,
    S: TryInto<T>, 
[src]

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