pub struct DecodeRetentionEvidenceV2 {
pub version: u16,
pub expansion_ratio_milli: Evidence<u64>,
pub retained_bytes: Evidence<u64>,
pub retained_peak_bytes: Evidence<u64>,
}Expand description
Decode expansion and retained-buffer evidence.
Fields§
§version: u16§expansion_ratio_milli: Evidence<u64>Derived decoder bytes per input byte in thousandths.
retained_bytes: Evidence<u64>Retained buffer bytes reported by the caller at its last update.
retained_peak_bytes: Evidence<u64>Retained buffer high water reported during the run.
Trait Implementations§
Source§impl Clone for DecodeRetentionEvidenceV2
impl Clone for DecodeRetentionEvidenceV2
Source§fn clone(&self) -> DecodeRetentionEvidenceV2
fn clone(&self) -> DecodeRetentionEvidenceV2
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 moreSource§impl Debug for DecodeRetentionEvidenceV2
impl Debug for DecodeRetentionEvidenceV2
Source§impl<'de> Deserialize<'de> for DecodeRetentionEvidenceV2
impl<'de> Deserialize<'de> for DecodeRetentionEvidenceV2
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DecodeRetentionEvidenceV2
impl StructuralPartialEq for DecodeRetentionEvidenceV2
Auto Trait Implementations§
impl Freeze for DecodeRetentionEvidenceV2
impl RefUnwindSafe for DecodeRetentionEvidenceV2
impl Send for DecodeRetentionEvidenceV2
impl Sync for DecodeRetentionEvidenceV2
impl Unpin for DecodeRetentionEvidenceV2
impl UnsafeUnpin for DecodeRetentionEvidenceV2
impl UnwindSafe for DecodeRetentionEvidenceV2
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