[][src]Struct grin_core::core::transaction::Output

pub struct Output {
    pub identifier: OutputIdentifier,
    pub proof: RangeProof,
}

Output for a transaction, defining the new ownership of coins that are being transferred. The commitment is a blinded value for the output while the range proof guarantees the commitment includes a positive value without overflow and the ownership of the private key.

Fields

identifier: OutputIdentifier

Output identifier (features and commitment).

proof: RangeProof

Rangeproof associated with the commitment.

Implementations

impl Output[src]

pub fn new(
    features: OutputFeatures,
    commit: Commitment,
    proof: RangeProof
) -> Output
[src]

Create a new output with the provided features, commitment and rangeproof.

pub fn identifier(&self) -> OutputIdentifier[src]

Output identifier.

pub fn commitment(&self) -> Commitment[src]

Commitment for the output

pub fn features(&self) -> OutputFeatures[src]

Output features.

pub fn is_coinbase(&self) -> bool[src]

Is this a coinbase output?

pub fn is_plain(&self) -> bool[src]

Is this a plain output?

pub fn proof(&self) -> RangeProof[src]

Range proof for the output

pub fn proof_bytes(&self) -> &[u8][src]

Get range proof as byte slice

pub fn verify_proof(&self) -> Result<(), Error>[src]

Validates the range proof using the commitment

pub fn batch_verify_proofs(
    commits: &[Commitment],
    proofs: &[RangeProof]
) -> Result<(), Error>
[src]

Batch validates the range proofs using the commitments

Trait Implementations

impl AsRef<Commitment> for Output[src]

impl AsRef<OutputIdentifier> for Output[src]

impl Clone for Output[src]

impl Copy for Output[src]

impl Debug for Output[src]

impl<'de> Deserialize<'de> for Output[src]

impl Eq for Output[src]

impl Ord for Output[src]

impl PartialEq<Output> for Output[src]

impl PartialOrd<Output> for Output[src]

impl Readable for Output[src]

Implementation of Readable for a transaction Output, defines how to read an Output from a binary stream.

impl Serialize for Output[src]

impl Writeable for Output[src]

Implementation of Writeable for a transaction Output, defines how to write an Output as binary.

Auto Trait Implementations

impl RefUnwindSafe for Output

impl Send for Output

impl Sync for Output

impl Unpin for Output

impl UnwindSafe for Output

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> DebugAny for T where
    T: Any + Debug

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> UnsafeAny for T where
    T: Any