Struct UnderFundedExplodingOption

Source
pub struct UnderFundedExplodingOption<T: 'static> { /* private fields */ }
Expand description

Similar to ExplodingOption except that the option requires an additional value amount to be paid in in order to execute, hence being “under funded”

Trait Implementations§

Source§

impl<T> Contract for UnderFundedExplodingOption<T>
where GenericBet: TryFrom<T, Error = CompilationError>, T: Clone + 'static,

Source§

const THEN_FNS: &'static [fn() -> Option<ThenFuncAsFinishOrFunc<'static, Self, Self::StatefulArguments>>]

binds the list of ThenFunc’s to this impl. Any fn() which returns None is ignored (useful for type-level state machines)

Source§

type StatefulArguments = ()

Due to type system limitations, all FinishOrFuncs for a Contract type must share a parameter pack type. If stable, no default type allowed.
Source§

const FINISH_OR_FUNCS: &'static [fn() -> Option<Box<dyn CallableAsFoF<Self, Self::StatefulArguments>>>] = _

binds the list of FinishOrFunc’s to this impl. Any fn() which returns None is ignored (useful for type-level state machines)
Source§

const FINISH_FNS: &'static [fn() -> Option<Guard<Self>>] = _

binds the list of Gurard’s to this impl as unlocking conditions. Guards only need to be bound if it is desired that they are sufficient to unlock funds, a Guard should not be bound if it is intended to be used with a ThenFunc. Any fn() which returns None is ignored (useful for type-level state machines)
Source§

fn metadata(&self, _ctx: Context) -> Result<ObjectMetadata, CompilationError>

Generate metadata for this contract object
Source§

fn ensure_amount(&self, _ctx: Context) -> Result<Amount, CompilationError>

minimum balance to have in this coin
Source§

impl<T> Explodes for UnderFundedExplodingOption<T>
where GenericBet: TryFrom<T, Error = CompilationError>, T: Clone,

Source§

fn explodes<'a>() -> Option<ThenFuncAsFinishOrFunc<'a, Self, <Self as Contract>::StatefulArguments>>

(missing docs fix)

Source§

fn then_explodes(&self, ctx: Context, _: ThenFuncTypeTag) -> TxTmplIt

(missing docs fix)

Source§

fn strikes<'a>() -> Option<ThenFuncAsFinishOrFunc<'a, Self, <Self as Contract>::StatefulArguments>>

(missing docs fix)

Source§

fn then_strikes(&self, ctx: Context, _: ThenFuncTypeTag) -> TxTmplIt

(missing docs fix)

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<'a, T> Compilable for T
where T: AnyContract + 'a, <T as AnyContract>::Ref: 'a,

Source§

fn compile(&self, ctx: Context) -> Result<Object, CompilationError>

The main Compilation Logic for a Contract. TODO: Better Document Semantics

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.