pub trait PotentiallyPruned: Sealed {
type RingSignatures: PotentiallyPrunedRingSignatures;
type RctProofs: PotentiallyPrunedRctProofs;
}Expand description
A trait representing either pruned or not pruned proofs.
Required Associated Types§
Sourcetype RingSignatures: PotentiallyPrunedRingSignatures
type RingSignatures: PotentiallyPrunedRingSignatures
Potentially-pruned ring signatures.
Sourcetype RctProofs: PotentiallyPrunedRctProofs
type RctProofs: PotentiallyPrunedRctProofs
Potentially-pruned RingCT proofs.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".