pub struct AggregationBody {
pub count: u64,
pub aggregated_evidence: StarkProofEnvelope,
pub issuer_bindings: Vec<IssuerBinding>,
}Expand description
CDDL §6.3 aggregation body.
Fields§
§count: u64Number of operands (must equal composition_record.operands.len()).
aggregated_evidence: StarkProofEnvelopeSingle STARK proof verifying every operand jointly.
issuer_bindings: Vec<IssuerBinding>Per-operand issuer key bindings (machine-checkable G-1).
Trait Implementations§
Source§impl Clone for AggregationBody
impl Clone for AggregationBody
Source§fn clone(&self) -> AggregationBody
fn clone(&self) -> AggregationBody
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 moreSource§impl Debug for AggregationBody
impl Debug for AggregationBody
Source§impl<'de> Deserialize<'de> for AggregationBody
impl<'de> Deserialize<'de> for AggregationBody
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
Source§impl PartialEq for AggregationBody
impl PartialEq for AggregationBody
Source§fn eq(&self, other: &AggregationBody) -> bool
fn eq(&self, other: &AggregationBody) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AggregationBody
impl Serialize for AggregationBody
impl Eq for AggregationBody
impl StructuralPartialEq for AggregationBody
Auto Trait Implementations§
impl Freeze for AggregationBody
impl RefUnwindSafe for AggregationBody
impl Send for AggregationBody
impl Sync for AggregationBody
impl Unpin for AggregationBody
impl UnsafeUnpin for AggregationBody
impl UnwindSafe for AggregationBody
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