Struct ink_env::call::CallBuilder
source · pub struct CallBuilder<E, CallType, Args, RetType>where
E: Environment,{ /* private fields */ }
Expand description
Builds up a cross contract call.
Implementations§
source§impl<E, CallType, Args, RetType> CallBuilder<E, Unset<CallType>, Args, RetType>where
E: Environment,
impl<E, CallType, Args, RetType> CallBuilder<E, Unset<CallType>, Args, RetType>where E: Environment,
sourcepub fn call_type<NewCallType>(
self,
call_type: NewCallType
) -> CallBuilder<E, Set<NewCallType>, Args, RetType>
pub fn call_type<NewCallType>( self, call_type: NewCallType ) -> CallBuilder<E, Set<NewCallType>, Args, RetType>
The type of the call.
source§impl<E, CallType, Args, RetType> CallBuilder<E, CallType, Args, RetType>where
E: Environment,
impl<E, CallType, Args, RetType> CallBuilder<E, CallType, Args, RetType>where E: Environment,
sourcepub fn call_flags(
self,
call_flags: CallFlags
) -> CallBuilder<E, CallType, Args, RetType>
pub fn call_flags( self, call_flags: CallFlags ) -> CallBuilder<E, CallType, Args, RetType>
The flags used to change the behavior of the contract call.
source§impl<E, CallType, Args> CallBuilder<E, CallType, Args, Unset<ReturnType<()>>>where
E: Environment,
impl<E, CallType, Args> CallBuilder<E, CallType, Args, Unset<ReturnType<()>>>where E: Environment,
sourcepub fn returns<R>(self) -> CallBuilder<E, CallType, Args, Set<ReturnType<R>>>
pub fn returns<R>(self) -> CallBuilder<E, CallType, Args, Set<ReturnType<R>>>
Sets the type of the returned value upon the execution of the call.
Note
Either use .returns::<()>
to signal that the call does not return a value
or use .returns::<T>
to signal that the call returns a value of type T
.
source§impl<E, CallType, RetType> CallBuilder<E, CallType, Unset<ExecutionInput<EmptyArgumentList>>, RetType>where
E: Environment,
impl<E, CallType, RetType> CallBuilder<E, CallType, Unset<ExecutionInput<EmptyArgumentList>>, RetType>where E: Environment,
sourcepub fn exec_input<Args>(
self,
exec_input: ExecutionInput<Args>
) -> CallBuilder<E, CallType, Set<ExecutionInput<Args>>, RetType>
pub fn exec_input<Args>( self, exec_input: ExecutionInput<Args> ) -> CallBuilder<E, CallType, Set<ExecutionInput<Args>>, RetType>
Sets the execution input to the given value.
source§impl<E, CallType, Args, RetType> CallBuilder<E, Unset<CallType>, Args, RetType>where
E: Environment,
impl<E, CallType, Args, RetType> CallBuilder<E, Unset<CallType>, Args, RetType>where E: Environment,
sourcepub fn call(
self,
callee: E::AccountId
) -> CallBuilder<E, Set<Call<E>>, Args, RetType>
pub fn call( self, callee: E::AccountId ) -> CallBuilder<E, Set<Call<E>>, Args, RetType>
Prepares the CallBuilder
for a cross-contract Call
.
sourcepub fn delegate(
self,
code_hash: E::Hash
) -> CallBuilder<E, Set<DelegateCall<E>>, Args, RetType>
pub fn delegate( self, code_hash: E::Hash ) -> CallBuilder<E, Set<DelegateCall<E>>, Args, RetType>
Prepares the CallBuilder
for a cross-contract DelegateCall
.
source§impl<E, Args, RetType> CallBuilder<E, Set<Call<E>>, Args, RetType>where
E: Environment,
impl<E, Args, RetType> CallBuilder<E, Set<Call<E>>, Args, RetType>where E: Environment,
source§impl<E, Args, RetType> CallBuilder<E, Set<DelegateCall<E>>, Args, RetType>where
E: Environment,
impl<E, Args, RetType> CallBuilder<E, Set<DelegateCall<E>>, Args, RetType>where E: Environment,
source§impl<E, Args, RetType> CallBuilder<E, Set<Call<E>>, Set<ExecutionInput<Args>>, Set<ReturnType<RetType>>>where
E: Environment,
impl<E, Args, RetType> CallBuilder<E, Set<Call<E>>, Set<ExecutionInput<Args>>, Set<ReturnType<RetType>>>where E: Environment,
sourcepub fn params(self) -> CallParams<E, Call<E>, Args, RetType>
pub fn params(self) -> CallParams<E, Call<E>, Args, RetType>
Finalizes the call builder to call a function.
source§impl<E, Args, RetType> CallBuilder<E, Set<DelegateCall<E>>, Set<ExecutionInput<Args>>, Set<ReturnType<RetType>>>where
E: Environment,
impl<E, Args, RetType> CallBuilder<E, Set<DelegateCall<E>>, Set<ExecutionInput<Args>>, Set<ReturnType<RetType>>>where E: Environment,
sourcepub fn params(self) -> CallParams<E, DelegateCall<E>, Args, RetType>
pub fn params(self) -> CallParams<E, DelegateCall<E>, Args, RetType>
Finalizes the call builder to call a function.
source§impl<E, RetType> CallBuilder<E, Set<Call<E>>, Unset<ExecutionInput<EmptyArgumentList>>, Unset<RetType>>where
E: Environment,
impl<E, RetType> CallBuilder<E, Set<Call<E>>, Unset<ExecutionInput<EmptyArgumentList>>, Unset<RetType>>where E: Environment,
sourcepub fn params(self) -> CallParams<E, Call<E>, EmptyArgumentList, ()>
pub fn params(self) -> CallParams<E, Call<E>, EmptyArgumentList, ()>
Finalizes the call builder to call a function.
source§impl<E, RetType> CallBuilder<E, Set<DelegateCall<E>>, Unset<ExecutionInput<EmptyArgumentList>>, Unset<RetType>>where
E: Environment,
impl<E, RetType> CallBuilder<E, Set<DelegateCall<E>>, Unset<ExecutionInput<EmptyArgumentList>>, Unset<RetType>>where E: Environment,
sourcepub fn params(self) -> CallParams<E, DelegateCall<E>, EmptyArgumentList, ()>
pub fn params(self) -> CallParams<E, DelegateCall<E>, EmptyArgumentList, ()>
Finalizes the call builder to call a function.
source§impl<E> CallBuilder<E, Set<Call<E>>, Unset<ExecutionInput<EmptyArgumentList>>, Unset<ReturnType<()>>>where
E: Environment,
impl<E> CallBuilder<E, Set<Call<E>>, Unset<ExecutionInput<EmptyArgumentList>>, Unset<ReturnType<()>>>where E: Environment,
sourcepub fn invoke(self)
pub fn invoke(self)
Invokes the cross-chain function call.
Panics
This method panics if it encounters an ink::env::Error
or an
[ink::primitives::LangError
][ink_primitives::LangError
]. If you want to handle
those use the try_invoke
method instead.
sourcepub fn try_invoke(self) -> Result<MessageResult<()>, Error>
pub fn try_invoke(self) -> Result<MessageResult<()>, Error>
Invokes the cross-chain function call.
Note
On failure this returns an outer ink::env::Error
or inner
[ink::primitives::LangError
][ink_primitives::LangError
], both of which can be
handled by the caller.
source§impl<E> CallBuilder<E, Set<DelegateCall<E>>, Unset<ExecutionInput<EmptyArgumentList>>, Unset<ReturnType<()>>>where
E: Environment,
impl<E> CallBuilder<E, Set<DelegateCall<E>>, Unset<ExecutionInput<EmptyArgumentList>>, Unset<ReturnType<()>>>where E: Environment,
sourcepub fn invoke(self)
pub fn invoke(self)
Invokes the cross-chain function call using Delegate Call semantics.
Panics
This method panics if it encounters an ink::env::Error
If you want to handle those use the try_invoke
method instead.
sourcepub fn try_invoke(self) -> Result<MessageResult<()>, Error>
pub fn try_invoke(self) -> Result<MessageResult<()>, Error>
Invokes the cross-chain function call using Delegate Call semantics.
Note
On failure this an ink::env::Error
which can be handled by the
caller.
source§impl<E, Args, R> CallBuilder<E, Set<Call<E>>, Set<ExecutionInput<Args>>, Set<ReturnType<R>>>where
E: Environment,
Args: Encode,
R: Decode,
impl<E, Args, R> CallBuilder<E, Set<Call<E>>, Set<ExecutionInput<Args>>, Set<ReturnType<R>>>where E: Environment, Args: Encode, R: Decode,
sourcepub fn invoke(self) -> R
pub fn invoke(self) -> R
Invokes the cross-chain function call and returns the result.
Panics
This method panics if it encounters an ink::env::Error
or an
[ink::primitives::LangError
][ink_primitives::LangError
]. If you want to handle
those use the try_invoke
method instead.
sourcepub fn try_invoke(self) -> Result<MessageResult<R>, Error>
pub fn try_invoke(self) -> Result<MessageResult<R>, Error>
Invokes the cross-chain function call and returns the result.
Note
On failure this returns an outer ink::env::Error
or inner
[ink::primitives::LangError
][ink_primitives::LangError
], both of which can be
handled by the caller.
source§impl<E, Args, R> CallBuilder<E, Set<DelegateCall<E>>, Set<ExecutionInput<Args>>, Set<ReturnType<R>>>where
E: Environment,
Args: Encode,
R: Decode,
impl<E, Args, R> CallBuilder<E, Set<DelegateCall<E>>, Set<ExecutionInput<Args>>, Set<ReturnType<R>>>where E: Environment, Args: Encode, R: Decode,
sourcepub fn invoke(self) -> R
pub fn invoke(self) -> R
Invokes the cross-chain function call using Delegate Call semantics and returns the result.
Panics
This method panics if it encounters an ink::env::Error
or an
[ink::primitives::LangError
][ink_primitives::LangError
]. If you want to handle
those use the try_invoke
method instead.
sourcepub fn try_invoke(self) -> Result<MessageResult<R>, Error>
pub fn try_invoke(self) -> Result<MessageResult<R>, Error>
Invokes the cross-chain function call using Delegate Call semantics and returns the result.
Note
On failure this returns an outer ink::env::Error
or inner
[ink::primitives::LangError
][ink_primitives::LangError
], both of which can be
handled by the caller.
Trait Implementations§
source§impl<E, CallType: Clone, Args: Clone, RetType: Clone> Clone for CallBuilder<E, CallType, Args, RetType>where
E: Environment + Clone,
impl<E, CallType: Clone, Args: Clone, RetType: Clone> Clone for CallBuilder<E, CallType, Args, RetType>where E: Environment + Clone,
source§fn clone(&self) -> CallBuilder<E, CallType, Args, RetType>
fn clone(&self) -> CallBuilder<E, CallType, Args, RetType>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl<E, CallType, Args, RetType> RefUnwindSafe for CallBuilder<E, CallType, Args, RetType>where Args: RefUnwindSafe, CallType: RefUnwindSafe, RetType: RefUnwindSafe,
impl<E, CallType, Args, RetType> Send for CallBuilder<E, CallType, Args, RetType>where Args: Send, CallType: Send, RetType: Send,
impl<E, CallType, Args, RetType> Sync for CallBuilder<E, CallType, Args, RetType>where Args: Sync, CallType: Sync, RetType: Sync,
impl<E, CallType, Args, RetType> Unpin for CallBuilder<E, CallType, Args, RetType>where Args: Unpin, CallType: Unpin, RetType: Unpin,
impl<E, CallType, Args, RetType> UnwindSafe for CallBuilder<E, CallType, Args, RetType>where Args: UnwindSafe, CallType: UnwindSafe, RetType: UnwindSafe,
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
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where Self: Display,
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where &'a Self: for<'a> IntoIterator,
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere
Self: Borrow<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere Self: Borrow<B>, B: 'a + ?Sized, R: 'a,
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> Rwhere
Self: BorrowMut<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> Rwhere Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere
Self: AsRef<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere Self: AsRef<U>, U: 'a + ?Sized, R: 'a,
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere
Self: AsMut<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere Self: AsMut<U>, U: 'a + ?Sized, R: 'a,
self
, then passes self.as_mut()
into the pipe
function.§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere
Self: AsRef<R>,
R: ?Sized,
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere
Self: Deref<Target = T>,
T: ?Sized,
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere Self: Deref<Target = T>, T: ?Sized,
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere
Self: DerefMut<Target = T> + Deref,
T: ?Sized,
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere Self: DerefMut<Target = T> + Deref, T: ?Sized,
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere
Self: AsRef<R>,
R: ?Sized,
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,
.tap_ref_mut()
only in debug builds, and is erased in release
builds.