[][src]Struct zei::core::AssetIssuance

pub struct AssetIssuance {
    pub asset_blinding_nonce: CompressedRistretto,
    pub asset_entropy: H256,
    pub amount: CompressedRistretto,
    pub inflation_keys: CompressedRistretto,
}

Description of an asset issuance in a transaction input

Fields

asset_blinding_nonce: CompressedRistretto

Zero for a new asset issuance; otherwise a blinding factor for the input

asset_entropy: H256

Freeform entropy field

amount: CompressedRistretto

Amount of asset to issue

inflation_keys: CompressedRistretto

Amount of inflation keys to issue

Trait Implementations

impl Clone for AssetIssuance[src]

impl Copy for AssetIssuance[src]

impl Debug for AssetIssuance[src]

impl Writeable for AssetIssuance[src]

impl Readable for AssetIssuance[src]

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

impl Serialize for AssetIssuance[src]

Auto Trait Implementations

Blanket Implementations

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

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

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,