pub struct KeyAggContext {
pub aggregate_key: AffinePoint,
pub x_only_pubkey: [u8; 32],
/* private fields */
}Expand description
Aggregated key context from key_agg().
Fields§
§aggregate_key: AffinePointThe aggregate public key Q (combined point).
x_only_pubkey: [u8; 32]The x-only aggregate public key bytes (32 bytes).
Trait Implementations§
Source§impl Clone for KeyAggContext
impl Clone for KeyAggContext
Source§fn clone(&self) -> KeyAggContext
fn clone(&self) -> KeyAggContext
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 moreAuto Trait Implementations§
impl Freeze for KeyAggContext
impl RefUnwindSafe for KeyAggContext
impl Send for KeyAggContext
impl Sync for KeyAggContext
impl Unpin for KeyAggContext
impl UnsafeUnpin for KeyAggContext
impl UnwindSafe for KeyAggContext
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