[][src]Enum conjure_http::client::Accept

pub enum Accept {
    Empty,
    Serializable,
    Binary,
}

The type of response expected by a visitor.

Variants

Empty

An empty response.

Serializable

A serializable response.

Binary

A binary response.

Trait Implementations

impl Clone for Accept[src]

impl Copy for Accept[src]

impl Debug for Accept[src]

impl Eq for Accept[src]

impl PartialEq<Accept> for Accept[src]

impl StructuralEq for Accept[src]

impl StructuralPartialEq for Accept[src]

Auto Trait Implementations

impl RefUnwindSafe for Accept

impl Send for Accept

impl Sync for Accept

impl Unpin for Accept

impl UnwindSafe for Accept

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