pub struct SolanaCompressionStats {
pub signature_patterns: usize,
pub pubkey_patterns: usize,
pub amount_patterns: usize,
pub total_solana_bytes_saved: u64,
}Expand description
Solana-specific compression statistics
Fields§
§signature_patterns: usizeNumber of signature patterns
pubkey_patterns: usizeNumber of public key patterns
amount_patterns: usizeNumber of amount patterns
total_solana_bytes_saved: u64Total bytes saved by Solana-specific patterns
Trait Implementations§
Source§impl Clone for SolanaCompressionStats
impl Clone for SolanaCompressionStats
Source§fn clone(&self) -> SolanaCompressionStats
fn clone(&self) -> SolanaCompressionStats
Returns a duplicate 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 SolanaCompressionStats
impl Debug for SolanaCompressionStats
Source§impl<'de> Deserialize<'de> for SolanaCompressionStats
impl<'de> Deserialize<'de> for SolanaCompressionStats
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
Auto Trait Implementations§
impl Freeze for SolanaCompressionStats
impl RefUnwindSafe for SolanaCompressionStats
impl Send for SolanaCompressionStats
impl Sync for SolanaCompressionStats
impl Unpin for SolanaCompressionStats
impl UnsafeUnpin for SolanaCompressionStats
impl UnwindSafe for SolanaCompressionStats
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