Struct spl_token_2022::extension::confidential_transfer::instruction::BatchedRangeProofU256Data
source · #[repr(C)]pub struct BatchedRangeProofU256Data {
pub context: BatchedRangeProofContext,
pub proof: RangeProofU256,
}
Expand description
The instruction data that is needed for the
ProofInstruction::BatchedRangeProofU256Data
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: RangeProofU256
The batched range proof
Implementations§
source§impl BatchedRangeProofU256Data
impl BatchedRangeProofU256Data
pub fn new( commitments: Vec<&PedersenCommitment>, amounts: Vec<u64>, bit_lengths: Vec<usize>, openings: Vec<&PedersenOpening> ) -> Result<BatchedRangeProofU256Data, ProofError>
Trait Implementations§
source§impl Clone for BatchedRangeProofU256Data
impl Clone for BatchedRangeProofU256Data
source§fn clone(&self) -> BatchedRangeProofU256Data
fn clone(&self) -> BatchedRangeProofU256Data
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 BatchedRangeProofU256Data
impl ZkProofData<BatchedRangeProofContext> for BatchedRangeProofU256Data
const PROOF_TYPE: ProofType = ProofType::BatchedRangeProofU256
fn context_data(&self) -> &BatchedRangeProofContext
fn verify_proof(&self) -> Result<(), ProofError>
impl Copy for BatchedRangeProofU256Data
impl Pod for BatchedRangeProofU256Data
Auto Trait Implementations§
impl RefUnwindSafe for BatchedRangeProofU256Data
impl Send for BatchedRangeProofU256Data
impl Sync for BatchedRangeProofU256Data
impl Unpin for BatchedRangeProofU256Data
impl UnwindSafe for BatchedRangeProofU256Data
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
.