[][src]Enum buffett_budget::budget::Budget

#[repr(C)]
pub enum Budget { Pay(Payment), After(ConditionPayment), Or((Condition, Payment)(Condition, Payment)), And(ConditionConditionPayment), }

Variants

Pay(Payment)After(ConditionPayment)Or((Condition, Payment)(Condition, Payment))And(ConditionConditionPayment)

Methods

impl Budget[src]

pub fn new_payment(balance: i64, to: Pubkey) -> Self[src]

pub fn new_authorized_payment(from: Pubkey, balance: i64, to: Pubkey) -> Self[src]

pub fn new_2_2_multisig_payment(
    from0: Pubkey,
    from1: Pubkey,
    balance: i64,
    to: Pubkey
) -> Self
[src]

pub fn new_future_payment(
    dt: DateTime<Utc>,
    from: Pubkey,
    balance: i64,
    to: Pubkey
) -> Self
[src]

pub fn new_cancelable_future_payment(
    dt: DateTime<Utc>,
    from: Pubkey,
    balance: i64,
    to: Pubkey
) -> Self
[src]

pub fn final_payment(&self) -> Option<Payment>[src]

pub fn verify(&self, spendable_balance: i64) -> bool[src]

pub fn apply_seal(&mut self, seal: &Seal, from: &Pubkey)[src]

Trait Implementations

impl Eq for Budget[src]

impl PartialEq<Budget> for Budget[src]

impl Clone for Budget[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Budget[src]

impl Serialize for Budget[src]

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

Auto Trait Implementations

impl Send for Budget

impl Sync for Budget

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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

impl<T> Borrow<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