Struct spl_token_2022::extension::confidential_transfer::instruction::BatchedRangeProofU64Data
source · #[repr(C)]pub struct BatchedRangeProofU64Data {
pub context: BatchedRangeProofContext,
pub proof: RangeProofU64,
}
Expand description
The instruction data that is needed for the
ProofInstruction::VerifyBatchedRangeProofU64
instruction.
It includes the cryptographic proof as well as the context data information needed to verify the proof.
Fields§
§context: BatchedRangeProofContext
The context data for a batched range proof
proof: RangeProofU64
The batched range proof
Implementations§
source§impl BatchedRangeProofU64Data
impl BatchedRangeProofU64Data
pub fn new( commitments: Vec<&PedersenCommitment>, amounts: Vec<u64>, bit_lengths: Vec<usize>, openings: Vec<&PedersenOpening> ) -> Result<BatchedRangeProofU64Data, ProofError>
Trait Implementations§
source§impl Clone for BatchedRangeProofU64Data
impl Clone for BatchedRangeProofU64Data
source§fn clone(&self) -> BatchedRangeProofU64Data
fn clone(&self) -> BatchedRangeProofU64Data
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 ZkProofData<BatchedRangeProofContext> for BatchedRangeProofU64Data
impl ZkProofData<BatchedRangeProofContext> for BatchedRangeProofU64Data
const PROOF_TYPE: ProofType = ProofType::BatchedRangeProofU64
fn context_data(&self) -> &BatchedRangeProofContext
fn verify_proof(&self) -> Result<(), ProofError>
impl Copy for BatchedRangeProofU64Data
impl Pod for BatchedRangeProofU64Data
Auto Trait Implementations§
impl RefUnwindSafe for BatchedRangeProofU64Data
impl Send for BatchedRangeProofU64Data
impl Sync for BatchedRangeProofU64Data
impl Unpin for BatchedRangeProofU64Data
impl UnwindSafe for BatchedRangeProofU64Data
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
source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
§type Bits = T
type Bits = T
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
.source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self
.