pub trait NativeFungibleBucket {
    // Required method
    fn create_proof_of_amount<Y, E>(
        &self,
        amount: Decimal,
        api: &mut Y
    ) -> Result<Proof, E>
       where E: Debug + ScryptoCategorize + ScryptoDecode,
             Y: ClientApi<E>;
}

Required Methods§

fn create_proof_of_amount<Y, E>( &self, amount: Decimal, api: &mut Y ) -> Result<Proof, E>

Object Safety§

This trait is not object safe.

Implementors§