pub enum ResponseMediaKind {
Json,
EventStream,
Text,
Binary,
Unsupported,
}Expand description
Semantic representation used for a response media entry.
This deliberately keeps server-sent events separate from ordinary text:
although text/event-stream belongs to the text top-level type, callers
must stream it rather than buffer and UTF-8 decode it like text/plain.
Variants§
Trait Implementations§
Source§impl Clone for ResponseMediaKind
impl Clone for ResponseMediaKind
Source§fn clone(&self) -> ResponseMediaKind
fn clone(&self) -> ResponseMediaKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ResponseMediaKind
Source§impl Debug for ResponseMediaKind
impl Debug for ResponseMediaKind
impl Eq for ResponseMediaKind
Source§impl PartialEq for ResponseMediaKind
impl PartialEq for ResponseMediaKind
Source§impl Serialize for ResponseMediaKind
impl Serialize for ResponseMediaKind
impl StructuralPartialEq for ResponseMediaKind
Auto Trait Implementations§
impl Freeze for ResponseMediaKind
impl RefUnwindSafe for ResponseMediaKind
impl Send for ResponseMediaKind
impl Sync for ResponseMediaKind
impl Unpin for ResponseMediaKind
impl UnsafeUnpin for ResponseMediaKind
impl UnwindSafe for ResponseMediaKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.