pub struct TxSourceOutputEntry {
pub out_reference: Variant,
pub stealth_address: Point,
pub concealing_point: Point,
pub amount_commitment: Point,
pub blinded_asset_id: Point,
}Expand description
One ring member of a source: the referenced output and its public data.
Fields§
§out_reference: VariantEither a global output index or a ref_by_id.
stealth_address: PointThe output’s one-time public key.
concealing_point: PointConcealing point (confidential outputs only).
amount_commitment: PointAmount commitment (confidential outputs only).
blinded_asset_id: PointBlinded asset id (confidential outputs only).
Trait Implementations§
Source§impl Clone for TxSourceOutputEntry
impl Clone for TxSourceOutputEntry
Source§fn clone(&self) -> TxSourceOutputEntry
fn clone(&self) -> TxSourceOutputEntry
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 TxSourceOutputEntry
impl Debug for TxSourceOutputEntry
Source§impl EpeeRead for TxSourceOutputEntry
impl EpeeRead for TxSourceOutputEntry
Source§impl EpeeWrite for TxSourceOutputEntry
impl EpeeWrite for TxSourceOutputEntry
Auto Trait Implementations§
impl Freeze for TxSourceOutputEntry
impl RefUnwindSafe for TxSourceOutputEntry
impl Send for TxSourceOutputEntry
impl Sync for TxSourceOutputEntry
impl Unpin for TxSourceOutputEntry
impl UnsafeUnpin for TxSourceOutputEntry
impl UnwindSafe for TxSourceOutputEntry
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