Struct sn_data_types::SignedTransferShare[][src]

pub struct SignedTransferShare { /* fields omitted */ }

An Actor cmd.

Implementations

impl SignedTransferShare[src]

pub fn new(
    debit: SignedDebitShare,
    credit: SignedCreditShare,
    actors: PublicKeySet
) -> Result<Self>
[src]

Creates a valid transfer share out of its parts.

pub fn id(&self) -> DebitId[src]

Get the debit id

pub fn amount(&self) -> Token[src]

Get the amount of this transfer

pub fn sender(&self) -> PublicKey[src]

Get the sender of this transfer

pub fn credit_id(&self) -> Result<CreditId>[src]

Get the credit id of this debit.

pub fn debit(&self) -> &SignedDebitShare[src]

Get the debit share.

pub fn credit(&self) -> &SignedCreditShare[src]

Get the credit share.

pub fn share_index(&self) -> usize[src]

Get the share index.

pub fn actors(&self) -> &PublicKeySet[src]

Get the public key set of the actors.

Trait Implementations

impl Clone for SignedTransferShare[src]

impl Debug for SignedTransferShare[src]

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

impl Eq for SignedTransferShare[src]

impl PartialEq<SignedTransferShare> for SignedTransferShare[src]

impl Serialize for SignedTransferShare[src]

impl StructuralEq for SignedTransferShare[src]

impl StructuralPartialEq for SignedTransferShare[src]

Auto Trait Implementations

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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,