[][src]Struct hreq::server::Reply

pub struct Reply(_);

Implementations

impl Reply[src]

Trait Implementations

impl<'a> From<&'a [u8]> for Reply[src]

impl<'a> From<&'a String> for Reply[src]

impl<'a> From<&'a Vec<u8>> for Reply[src]

impl<'a> From<&'a str> for Reply[src]

impl<'a> From<()> for Reply[src]

impl From<Body> for Reply[src]

impl<R> From<Option<R>> for Reply where
    R: Into<Reply>, 
[src]

impl<B> From<Response<B>> for Reply where
    B: Into<Body>, 
[src]

impl<B, E> From<Result<B, E>> for Reply where
    B: Into<Body>,
    E: Into<Error>, 
[src]

impl<B, E> From<Result<Response<B>, E>> for Reply where
    B: Into<Body>,
    E: Into<Error>, 
[src]

impl From<String> for Reply[src]

impl From<Vec<u8>> for Reply[src]

Auto Trait Implementations

impl !RefUnwindSafe for Reply

impl Send for Reply

impl Sync for Reply

impl Unpin for Reply

impl !UnwindSafe for Reply

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Sealed<T> for T where
    T: ?Sized

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