pub struct DynamicExample;
Expand description
Shows how to make a Dynamic Contract without creating a bespoke type.
Trait Implementations§
Source§impl Contract for DynamicExample
impl Contract for DynamicExample
Source§const THEN_FNS: &'static [fn() -> Option<ThenFuncAsFinishOrFunc<'static, Self, Self::StatefulArguments>>]
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 = ()
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>>>] = _
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>>] = _
const FINISH_FNS: &'static [fn() -> Option<Guard<Self>>] = _
binds the list of
Gurard
’s to this impl as unlocking conditions.
Guard
s 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>
fn metadata(&self, _ctx: Context) -> Result<ObjectMetadata, CompilationError>
Generate metadata for this contract object
Source§fn ensure_amount(&self, _ctx: Context) -> Result<Amount, CompilationError>
fn ensure_amount(&self, _ctx: Context) -> Result<Amount, CompilationError>
minimum balance to have in this coin
Source§impl<'de> Deserialize<'de> for DynamicExample
impl<'de> Deserialize<'de> for DynamicExample
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for DynamicExample
impl JsonSchema for DynamicExample
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreAuto Trait Implementations§
impl Freeze for DynamicExample
impl RefUnwindSafe for DynamicExample
impl Send for DynamicExample
impl Sync for DynamicExample
impl Unpin for DynamicExample
impl UnwindSafe for DynamicExample
Blanket Implementations§
Source§impl<C> AnyContract for C
impl<C> AnyContract for C
Source§type StatefulArguments = <C as Contract>::StatefulArguments
type StatefulArguments = <C as Contract>::StatefulArguments
The parameter pack type for
FinishOrFunc
s.Source§type Ref = C
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.Source§fn then_fns<'a>(
&'a self,
) -> &'a [fn() -> Option<FinishOrFunc<'a, <C as AnyContract>::Ref, <C as AnyContract>::StatefulArguments, ThenFuncTypeTag, WebAPIDisabled>>]where
<C as AnyContract>::Ref: 'a,
fn then_fns<'a>(
&'a self,
) -> &'a [fn() -> Option<FinishOrFunc<'a, <C as AnyContract>::Ref, <C as AnyContract>::StatefulArguments, ThenFuncTypeTag, WebAPIDisabled>>]where
<C as AnyContract>::Ref: 'a,
obtain a reference to the
ThenFuncAsFinishOrFunc
list.Source§fn finish_or_fns<'a>(
&'a self,
) -> &'a [fn() -> Option<Box<dyn CallableAsFoF<<C as AnyContract>::Ref, <C as AnyContract>::StatefulArguments>>>]
fn finish_or_fns<'a>( &'a self, ) -> &'a [fn() -> Option<Box<dyn CallableAsFoF<<C as AnyContract>::Ref, <C as AnyContract>::StatefulArguments>>>]
obtain a reference to the
FinishOrFunc
list.Source§fn finish_fns<'a>(
&'a self,
) -> &'a [fn() -> Option<Guard<<C as AnyContract>::Ref>>]
fn finish_fns<'a>( &'a self, ) -> &'a [fn() -> Option<Guard<<C as AnyContract>::Ref>>]
obtain a reference to the
Guard
list.Source§fn get_inner_ref<'a>(&'a self) -> &'a <C as AnyContract>::Ref
fn get_inner_ref<'a>(&'a self) -> &'a <C as AnyContract>::Ref
obtain a reference to
Self::Ref
type.Source§fn metadata<'a>(
&'a self,
ctx: Context,
) -> Result<ObjectMetadata, CompilationError>
fn metadata<'a>( &'a self, ctx: Context, ) -> Result<ObjectMetadata, CompilationError>
Generate the metadata
Source§fn ensure_amount<'a>(&'a self, ctx: Context) -> Result<Amount, CompilationError>
fn ensure_amount<'a>(&'a self, ctx: Context) -> Result<Amount, CompilationError>
Minimum Amount
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more