pub enum StreamingDecoderType {
Flate,
Dct,
}Expand description
Types of filters that support streaming decode.
Variants§
Flate
FlateDecode (zlib/deflate) — true incremental streaming.
Dct
DCTDecode (JPEG) — accumulates input, decodes on finish().
Trait Implementations§
Source§impl Clone for StreamingDecoderType
impl Clone for StreamingDecoderType
Source§fn clone(&self) -> StreamingDecoderType
fn clone(&self) -> StreamingDecoderType
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 StreamingDecoderType
impl Debug for StreamingDecoderType
Source§impl PartialEq for StreamingDecoderType
impl PartialEq for StreamingDecoderType
impl Copy for StreamingDecoderType
impl Eq for StreamingDecoderType
impl StructuralPartialEq for StreamingDecoderType
Auto Trait Implementations§
impl Freeze for StreamingDecoderType
impl RefUnwindSafe for StreamingDecoderType
impl Send for StreamingDecoderType
impl Sync for StreamingDecoderType
impl Unpin for StreamingDecoderType
impl UnsafeUnpin for StreamingDecoderType
impl UnwindSafe for StreamingDecoderType
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