Struct sapio_contrib::contracts::readme_contracts::PayToPublicKey[][src]

pub struct PayToPublicKey { /* fields omitted */ }

Pay To Public Key Sapio Contract

Trait Implementations

impl Contract for PayToPublicKey[src]

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

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)

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. Read more

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

impl JsonSchema for PayToPublicKey[src]

impl Serialize for PayToPublicKey[src]

Auto Trait Implementations

Blanket Implementations

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

impl<C> AnyContract for C where
    C: Contract
[src]

type StatefulArguments = <C as Contract>::StatefulArguments

The parameter pack type for FinishOrFuncs.

type Ref = C

A Reference which can be extracted to the contract argument data For some types, Ref == Self, and for other types Ref may point to a member. This enables DynamicContract and Contract to impl AnyContract, as well as more exotic types. Read more

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

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

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

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

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

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, 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.