pub enum StdTransferEncoding {
Chunked,
Compress,
Deflate,
Gzip,
}Expand description
Standard transfer encoding scheme, as defined by IANA.
Variants§
Chunked
Split into a series of chunks.
Compress
UNIX “compress” data format.
Deflate
Deflate compressed data format.
Gzip
Gzip compressed data format.
Trait Implementations§
Source§impl Clone for StdTransferEncoding
impl Clone for StdTransferEncoding
Source§fn clone(&self) -> StdTransferEncoding
fn clone(&self) -> StdTransferEncoding
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StdTransferEncoding
impl Debug for StdTransferEncoding
Source§impl FromStr for StdTransferEncoding
impl FromStr for StdTransferEncoding
Source§impl Hash for StdTransferEncoding
impl Hash for StdTransferEncoding
Source§impl PartialEq for StdTransferEncoding
impl PartialEq for StdTransferEncoding
impl Copy for StdTransferEncoding
impl Eq for StdTransferEncoding
impl StructuralPartialEq for StdTransferEncoding
Auto Trait Implementations§
impl Freeze for StdTransferEncoding
impl RefUnwindSafe for StdTransferEncoding
impl Send for StdTransferEncoding
impl Sync for StdTransferEncoding
impl Unpin for StdTransferEncoding
impl UnwindSafe for StdTransferEncoding
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