[][src]Struct qiniu_http::Response

pub struct Response { /* fields omitted */ }

Methods

impl Response[src]

pub fn headers(&self) -> &Headers<'static>[src]

pub fn body(&self) -> &Option<Body>[src]

impl Response[src]

pub fn status_code(&self) -> StatusCode[src]

pub fn server_ip(&self) -> Option<IpAddr>[src]

pub fn server_port(&self) -> u16[src]

impl Response[src]

pub fn status_code_mut(&mut self) -> &mut StatusCode[src]

pub fn headers_mut(&mut self) -> &mut Headers<'static>[src]

pub fn body_mut(&mut self) -> &mut Option<Body>[src]

pub fn server_ip_mut(&mut self) -> &mut Option<IpAddr>[src]

pub fn server_port_mut(&mut self) -> &mut u16[src]

impl Response[src]

pub fn header<HeaderNameT: Into<HeaderName<'static>>>(
    &self,
    header_name: HeaderNameT
) -> Option<&HeaderValue>
[src]

pub fn into_body(self) -> Option<Body>[src]

pub fn take_body(&mut self) -> Option<Body>[src]

Trait Implementations

impl Default for Response[src]

impl Debug for Response[src]

Auto Trait Implementations

impl !Send for Response

impl !Sync for Response

impl Unpin for Response

impl !UnwindSafe for Response

impl !RefUnwindSafe for Response

Blanket Implementations

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

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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