pub struct ScCallMandos { /* private fields */ }
Implementations§
Source§impl ScCallMandos
impl ScCallMandos
pub fn new(from: &Address, to: &Address, function: &str) -> Self
pub fn add_egld_value(&mut self, egld_value: &BigUint)
pub fn add_esdt_transfer( &mut self, token_id: &[u8], nonce: u64, esdt_value: &BigUint, )
pub fn add_argument<T: TopEncode>(&mut self, arg: &T)
pub fn set_gas_limit(&mut self, gas_limit: u64)
pub fn set_gas_price(&mut self, gas_price: u64)
Auto Trait Implementations§
impl Freeze for ScCallMandos
impl RefUnwindSafe for ScCallMandos
impl Send for ScCallMandos
impl Sync for ScCallMandos
impl Unpin for ScCallMandos
impl UnwindSafe for ScCallMandos
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> 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