[][src]Struct grin_wallet_libwallet::slate_versions::v3::SlateV3

pub struct SlateV3 {
    pub version_info: VersionCompatInfoV3,
    pub num_participants: usize,
    pub id: Uuid,
    pub tx: TransactionV3,
    pub amount: u64,
    pub fee: u64,
    pub height: u64,
    pub lock_height: u64,
    pub ttl_cutoff_height: Option<u64>,
    pub participant_data: Vec<ParticipantDataV3>,
    pub payment_proof: Option<PaymentInfoV3>,
}

Fields

version_info: VersionCompatInfoV3

Versioning info

num_participants: usize

The number of participants intended to take part in this transaction

id: Uuid

Unique transaction ID, selected by sender

tx: TransactionV3

The core transaction data: inputs, outputs, kernels, kernel offset

amount: u64

base amount (excluding fee)

fee: u64

fee amount

height: u64

Block height for the transaction

lock_height: u64

Lock height

ttl_cutoff_height: Option<u64>

TTL, the block height at which wallets should refuse to process the transaction and unlock all associated outputs

participant_data: Vec<ParticipantDataV3>

Participant data, each participant in the transaction will insert their public data here. For now, 0 is sender and 1 is receiver, though this will change for multi-party

payment_proof: Option<PaymentInfoV3>

Payment Proof

Trait Implementations

impl Clone for SlateV3[src]

impl Debug for SlateV3[src]

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

impl<'_> From<&'_ Slate> for SlateV3[src]

impl<'_> From<&'_ SlateV3> for SlateV2[src]

impl From<Slate> for SlateV3[src]

impl From<SlateV2> for SlateV3[src]

impl From<SlateV3> for Slate[src]

impl Serialize for SlateV3[src]

Auto Trait Implementations

impl RefUnwindSafe for SlateV3

impl Send for SlateV3

impl Sync for SlateV3

impl Unpin for SlateV3

impl UnwindSafe for SlateV3

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<'a, T> DefaultFeatures<'a> for T where
    T: 'a + Clone + Send + Sync

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

impl<T> Erased for T

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

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

impl<'a, T> NonSyncFeatures<'a> for T where
    T: 'a + Clone

impl<T> SafeBorrow<T> for T where
    T: ?Sized

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

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