pub struct B64Window {
pub in_start: u64,
pub in_len: u64,
pub skip: usize,
}Expand description
The raw-input read plan for an output base64 window.
Fields§
§in_start: u64First raw input byte to read.
in_len: u64Number of raw input bytes to read (clipped to the image length).
skip: usizeLeading base64 chars to drop after encoding the read bytes.
Trait Implementations§
impl Copy for B64Window
impl Eq for B64Window
impl StructuralPartialEq for B64Window
Auto Trait Implementations§
impl Freeze for B64Window
impl RefUnwindSafe for B64Window
impl Send for B64Window
impl Sync for B64Window
impl Unpin for B64Window
impl UnsafeUnpin for B64Window
impl UnwindSafe for B64Window
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