pub struct UserBuiltinProxyMethods<Env, From, To, Gas>{ /* private fields */ }
Implementations§
source§impl<Env, From, To, Gas> UserBuiltinProxyMethods<Env, From, To, Gas>
impl<Env, From, To, Gas> UserBuiltinProxyMethods<Env, From, To, Gas>
pub fn set_user_name<Arg0>( self, name: Arg0, ) -> Tx<Env, From, To, NotPayable, Gas, FunctionCall<<Env as TxEnv>::Api>, OriginalResultMarker<()>>
pub fn delete_user_name( self, ) -> Tx<Env, From, To, NotPayable, Gas, FunctionCall<<Env as TxEnv>::Api>, OriginalResultMarker<()>>
pub fn claim_developer_rewards( self, ) -> Tx<Env, From, To, NotPayable, Gas, FunctionCall<<Env as TxEnv>::Api>, OriginalResultMarker<()>>
pub fn change_owner_address( self, new_owner: &ManagedAddress<<Env as TxEnv>::Api>, ) -> Tx<Env, From, To, NotPayable, Gas, FunctionCall<<Env as TxEnv>::Api>, OriginalResultMarker<()>>
pub fn esdt_local_burn( self, token: &TokenIdentifier<<Env as TxEnv>::Api>, nonce: u64, amount: &BigUint<<Env as TxEnv>::Api>, ) -> Tx<Env, From, To, NotPayable, Gas, FunctionCall<<Env as TxEnv>::Api>, OriginalResultMarker<()>>
pub fn esdt_local_mint( self, token: &TokenIdentifier<<Env as TxEnv>::Api>, nonce: u64, amount: &BigUint<<Env as TxEnv>::Api>, ) -> Tx<Env, From, To, NotPayable, Gas, FunctionCall<<Env as TxEnv>::Api>, OriginalResultMarker<()>>
pub fn nft_add_multiple_uri( self, token_id: &TokenIdentifier<<Env as TxEnv>::Api>, nft_nonce: u64, new_uris: &ManagedVec<<Env as TxEnv>::Api, ManagedBuffer<<Env as TxEnv>::Api>>, ) -> Tx<Env, From, To, NotPayable, Gas, FunctionCall<<Env as TxEnv>::Api>, OriginalResultMarker<()>>
pub fn nft_update_attributes<T>(
self,
token_id: &TokenIdentifier<<Env as TxEnv>::Api>,
nft_nonce: u64,
new_attributes: &T,
) -> Tx<Env, From, To, NotPayable, Gas, FunctionCall<<Env as TxEnv>::Api>, OriginalResultMarker<()>>where
T: TopEncode,
pub fn esdt_nft_create<T>(
self,
token: &TokenIdentifier<<Env as TxEnv>::Api>,
amount: &BigUint<<Env as TxEnv>::Api>,
name: &ManagedBuffer<<Env as TxEnv>::Api>,
royalties: &BigUint<<Env as TxEnv>::Api>,
hash: &ManagedBuffer<<Env as TxEnv>::Api>,
attributes: &T,
uris: &ManagedVec<<Env as TxEnv>::Api, ManagedBuffer<<Env as TxEnv>::Api>>,
) -> Tx<Env, From, To, NotPayable, Gas, FunctionCall<<Env as TxEnv>::Api>, OriginalResultMarker<u64>>where
T: TopEncode,
Auto Trait Implementations§
impl<Env, From, To, Gas> Freeze for UserBuiltinProxyMethods<Env, From, To, Gas>
impl<Env, From, To, Gas> RefUnwindSafe for UserBuiltinProxyMethods<Env, From, To, Gas>
impl<Env, From, To, Gas> Send for UserBuiltinProxyMethods<Env, From, To, Gas>
impl<Env, From, To, Gas> Sync for UserBuiltinProxyMethods<Env, From, To, Gas>
impl<Env, From, To, Gas> Unpin for UserBuiltinProxyMethods<Env, From, To, Gas>
impl<Env, From, To, Gas> UnwindSafe for UserBuiltinProxyMethods<Env, From, To, Gas>
Blanket Implementations§
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> InterpretableFrom<T> for T
impl<T> InterpretableFrom<T> for T
fn interpret_from(from: T, _context: &InterpreterContext) -> T
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more