#[non_exhaustive]pub enum AnalysisCounter {
CompressedBits,
DecompressedBytes,
StructuralItems,
}Expand description
A checked counter maintained by structural analysis.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
CompressedBits
Absolute compressed bit positions and sizes.
DecompressedBytes
Absolute decompressed byte positions and sizes.
StructuralItems
Literal, copy, block, stream, or reference counts.
Trait Implementations§
Source§impl Clone for AnalysisCounter
impl Clone for AnalysisCounter
Source§fn clone(&self) -> AnalysisCounter
fn clone(&self) -> AnalysisCounter
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 AnalysisCounter
Source§impl Debug for AnalysisCounter
impl Debug for AnalysisCounter
Source§impl Display for AnalysisCounter
impl Display for AnalysisCounter
impl Eq for AnalysisCounter
Source§impl PartialEq for AnalysisCounter
impl PartialEq for AnalysisCounter
impl StructuralPartialEq for AnalysisCounter
Auto Trait Implementations§
impl Freeze for AnalysisCounter
impl RefUnwindSafe for AnalysisCounter
impl Send for AnalysisCounter
impl Sync for AnalysisCounter
impl Unpin for AnalysisCounter
impl UnsafeUnpin for AnalysisCounter
impl UnwindSafe for AnalysisCounter
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