pub struct EncodedChunk { /* private fields */ }Expand description
One synthesized Base64 output chunk.
Complete chunks contain four bytes. The final chunk may contain two or three bytes for an unpadded codec. This value owns its synthesized bytes; it is not a zero-copy view into the plaintext input.
Implementations§
Source§impl EncodedChunk
impl EncodedChunk
Trait Implementations§
Source§impl Clone for EncodedChunk
impl Clone for EncodedChunk
Source§fn clone(&self) -> EncodedChunk
fn clone(&self) -> EncodedChunk
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 EncodedChunk
Source§impl Debug for EncodedChunk
impl Debug for EncodedChunk
Source§impl Display for EncodedChunk
impl Display for EncodedChunk
impl Eq for EncodedChunk
Source§impl PartialEq for EncodedChunk
impl PartialEq for EncodedChunk
impl StructuralPartialEq for EncodedChunk
Auto Trait Implementations§
impl Freeze for EncodedChunk
impl RefUnwindSafe for EncodedChunk
impl Send for EncodedChunk
impl Sync for EncodedChunk
impl Unpin for EncodedChunk
impl UnsafeUnpin for EncodedChunk
impl UnwindSafe for EncodedChunk
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