pub struct DecodeReport {
pub src_used: usize,
pub dst_used: usize,
}
Expand description
A report of the source and destination bytes used during in-place decoding
Fields§
§src_used: usize
§dst_used: usize
Trait Implementations§
Source§impl Clone for DecodeReport
impl Clone for DecodeReport
Source§fn clone(&self) -> DecodeReport
fn clone(&self) -> DecodeReport
Returns a copy 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 DecodeReport
impl Debug for DecodeReport
impl Copy for DecodeReport
Auto Trait Implementations§
impl Freeze for DecodeReport
impl RefUnwindSafe for DecodeReport
impl Send for DecodeReport
impl Sync for DecodeReport
impl Unpin for DecodeReport
impl UnwindSafe for DecodeReport
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