pub struct ChunkedEncoder<'e, E: Engine + ?Sized> {
    engine: &'e E,
}Expand description
A base64 encoder that emits encoded bytes in chunks without heap allocation.
Fields§
§engine: &'e EImplementations§
Auto Trait Implementations§
impl<'e, E> Freeze for ChunkedEncoder<'e, E>where
    E: ?Sized,
impl<'e, E> RefUnwindSafe for ChunkedEncoder<'e, E>where
    E: RefUnwindSafe + ?Sized,
impl<'e, E> Send for ChunkedEncoder<'e, E>where
    E: ?Sized,
impl<'e, E> Sync for ChunkedEncoder<'e, E>where
    E: ?Sized,
impl<'e, E> Unpin for ChunkedEncoder<'e, E>where
    E: ?Sized,
impl<'e, E> UnwindSafe for ChunkedEncoder<'e, E>where
    E: RefUnwindSafe + ?Sized,
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