[][src]Struct body_image_futio::RequestRecord

pub struct RequestRecord<B> { /* fields omitted */ }

An http::Request and recording. Note that other important getter methods for RequestRecord are found in trait implementation RequestRecorded.

Limitations: This can't be Clone, because http::Request currently isn't Clone. Also note that as used as type B, hyper::Body also isn't Clone.

Methods

impl<B> RequestRecord<B>[src]

pub fn method(&self) -> &Method[src]

The HTTP method (verb), e.g. GET, POST, etc.

pub fn url(&self) -> &Uri[src]

The complete URL as used in the request.

pub fn request(&self) -> &Request<B>[src]

Return the HTTP request.

Trait Implementations

impl<B: Debug> Debug for RequestRecord<B>[src]

impl<B> RequestRecorded for RequestRecord<B>[src]

Auto Trait Implementations

impl<B> !RefUnwindSafe for RequestRecord<B>

impl<B> Send for RequestRecord<B> where
    B: Send

impl<B> Sync for RequestRecord<B> where
    B: Sync

impl<B> Unpin for RequestRecord<B> where
    B: Unpin

impl<B> !UnwindSafe for RequestRecord<B>

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> From<T> for T[src]

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

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<V, T> VZip<V> for T where
    V: MultiLane<T>,