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<Arg0, Arg1>( self, token: Arg0, nonce: u64, amount: Arg1, ) -> Tx<Env, From, To, NotPayable, Gas, FunctionCall<<Env as TxEnv>::Api>, OriginalResultMarker<()>>
pub fn esdt_local_mint<Arg0, Arg1>( self, token: Arg0, nonce: u64, amount: Arg1, ) -> Tx<Env, From, To, NotPayable, Gas, FunctionCall<<Env as TxEnv>::Api>, OriginalResultMarker<()>>
pub fn nft_add_multiple_uri<Arg0>( self, token_id: Arg0, 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, Arg0>( self, token_id: Arg0, nft_nonce: u64, new_attributes: &T, ) -> Tx<Env, From, To, NotPayable, Gas, FunctionCall<<Env as TxEnv>::Api>, OriginalResultMarker<()>>
pub fn esdt_nft_create<T, Arg0, Arg1, Arg2, Arg3, Arg4>( self, token: Arg0, amount: Arg1, name: Arg2, royalties: Arg3, hash: Arg4, 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>>
pub fn esdt_modify_royalties<Arg0, Arg1, Arg2>( self, token_id: Arg0, nonce: Arg1, new_royalty: Arg2, ) -> Tx<Env, From, To, NotPayable, Gas, FunctionCall<<Env as TxEnv>::Api>, OriginalResultMarker<()>>
pub fn esdt_nft_set_new_uris<Arg0, Arg1>( self, token_id: Arg0, nonce: Arg1, 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 esdt_nft_modify_creator<Arg0, Arg1>( self, token_id: Arg0, nonce: Arg1, ) -> Tx<Env, From, To, NotPayable, Gas, FunctionCall<<Env as TxEnv>::Api>, OriginalResultMarker<()>>
pub fn esdt_metadata_recreate<T, Arg0, Arg1, Arg2, Arg3, Arg4>( self, token_id: Arg0, nonce: Arg1, name: Arg2, royalties: Arg3, hash: Arg4, new_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<()>>
pub fn esdt_metadata_update<T, Arg0, Arg1, Arg2, Arg3, Arg4>( self, token_id: Arg0, nonce: Arg1, name: Arg2, royalties: Arg3, hash: Arg4, new_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<()>>
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