Struct viz_core::Response[][src]

pub struct Response { /* fields omitted */ }

Viz Response

Implementations

impl Response[src]

pub fn new() -> Self[src]

Creates a response

pub fn raw(&self) -> &Response[src]

Gets raw response

pub fn raw_mut(&mut self) -> &mut Response[src]

Get mut raw response

pub fn text(data: impl Into<Body>) -> Self[src]

Responds Text

pub fn html(data: impl Into<Body>) -> Self[src]

Responds HTML

pub fn json(data: impl Into<Body>) -> Self[src]

Responds JSON

pub fn with_status(self, status: StatusCode) -> Self[src]

Sets status for response

Methods from Deref<Target = Response>

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

Returns the StatusCode.

Examples

let response: Response<()> = Response::default();
assert_eq!(response.status(), StatusCode::OK);

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

Returns a mutable reference to the associated StatusCode.

Examples

let mut response: Response<()> = Response::default();
*response.status_mut() = StatusCode::CREATED;
assert_eq!(response.status(), StatusCode::CREATED);

pub fn version(&self) -> Version[src]

Returns a reference to the associated version.

Examples

let response: Response<()> = Response::default();
assert_eq!(response.version(), Version::HTTP_11);

pub fn version_mut(&mut self) -> &mut Version[src]

Returns a mutable reference to the associated version.

Examples

let mut response: Response<()> = Response::default();
*response.version_mut() = Version::HTTP_2;
assert_eq!(response.version(), Version::HTTP_2);

pub fn headers(&self) -> &HeaderMap<HeaderValue>[src]

Returns a reference to the associated header field map.

Examples

let response: Response<()> = Response::default();
assert!(response.headers().is_empty());

pub fn headers_mut(&mut self) -> &mut HeaderMap<HeaderValue>[src]

Returns a mutable reference to the associated header field map.

Examples

let mut response: Response<()> = Response::default();
response.headers_mut().insert(HOST, HeaderValue::from_static("world"));
assert!(!response.headers().is_empty());

pub fn extensions(&self) -> &Extensions[src]

Returns a reference to the associated extensions.

Examples

let response: Response<()> = Response::default();
assert!(response.extensions().get::<i32>().is_none());

pub fn extensions_mut(&mut self) -> &mut Extensions[src]

Returns a mutable reference to the associated extensions.

Examples

let mut response: Response<()> = Response::default();
response.extensions_mut().insert("hello");
assert_eq!(response.extensions().get(), Some(&"hello"));

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

Returns a reference to the associated HTTP body.

Examples

let response: Response<String> = Response::default();
assert!(response.body().is_empty());

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

Returns a mutable reference to the associated HTTP body.

Examples

let mut response: Response<String> = Response::default();
response.body_mut().push_str("hello world");
assert!(!response.body().is_empty());

Trait Implementations

impl Debug for Response[src]

impl Deref for Response[src]

type Target = Response

The resulting type after dereferencing.

impl DerefMut for Response[src]

impl Display for Response[src]

impl Error for Response[src]

impl From<&'_ [u8]> for Response[src]

impl From<&'_ str> for Response[src]

impl From<()> for Response[src]

impl<T> From<(StatusCode, T)> for Response where
    T: Into<Response>, 
[src]

impl From<Cow<'_, str>> for Response[src]

impl From<Error> for Response[src]

impl From<Response<Body>> for Response[src]

impl<T, E> From<Result<T, E>> for Response where
    T: Into<Response>,
    E: Into<Response> + Into<Error> + 'static, 
[src]

impl From<StatusCode> for Response[src]

impl From<String> for Response[src]

impl From<Value> for Response[src]

impl Into<Response<Body>> for Response[src]

impl Into<Response> for CookiesError[src]

impl Into<Response> for ParamsError[src]

impl Into<Response> for PayloadError[src]

Auto Trait Implementations

impl !RefUnwindSafe for Response

impl Send for Response

impl Sync for Response

impl Unpin for Response

impl !UnwindSafe for Response

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[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>,