Struct ink_env::call::CreateBuilder
source · pub struct CreateBuilder<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Salt, RetType>where
E: Environment,{ /* private fields */ }
Expand description
Builds up contract instantiations.
Implementations§
source§impl<E, ContractRef, GasLimit, Endowment, Args, Salt, RetType> CreateBuilder<E, ContractRef, Unset<E::Hash>, GasLimit, Endowment, Args, Salt, RetType>where
E: Environment,
impl<E, ContractRef, GasLimit, Endowment, Args, Salt, RetType> CreateBuilder<E, ContractRef, Unset<E::Hash>, GasLimit, Endowment, Args, Salt, RetType>where E: Environment,
source§impl<E, ContractRef, CodeHash, Endowment, Args, Salt, RetType> CreateBuilder<E, ContractRef, CodeHash, Unset<u64>, Endowment, Args, Salt, RetType>where
E: Environment,
impl<E, ContractRef, CodeHash, Endowment, Args, Salt, RetType> CreateBuilder<E, ContractRef, CodeHash, Unset<u64>, Endowment, Args, Salt, RetType>where E: Environment,
source§impl<E, ContractRef, CodeHash, GasLimit, Args, Salt, RetType> CreateBuilder<E, ContractRef, CodeHash, GasLimit, Unset<E::Balance>, Args, Salt, RetType>where
E: Environment,
impl<E, ContractRef, CodeHash, GasLimit, Args, Salt, RetType> CreateBuilder<E, ContractRef, CodeHash, GasLimit, Unset<E::Balance>, Args, Salt, RetType>where E: Environment,
source§impl<E, ContractRef, CodeHash, GasLimit, Endowment, Salt, RetType> CreateBuilder<E, ContractRef, CodeHash, GasLimit, Endowment, Unset<ExecutionInput<EmptyArgumentList>>, Salt, RetType>where
E: Environment,
impl<E, ContractRef, CodeHash, GasLimit, Endowment, Salt, RetType> CreateBuilder<E, ContractRef, CodeHash, GasLimit, Endowment, Unset<ExecutionInput<EmptyArgumentList>>, Salt, RetType>where E: Environment,
sourcepub fn exec_input<Args>(
self,
exec_input: ExecutionInput<Args>
) -> CreateBuilder<E, ContractRef, CodeHash, GasLimit, Endowment, Set<ExecutionInput<Args>>, Salt, RetType>
pub fn exec_input<Args>( self, exec_input: ExecutionInput<Args> ) -> CreateBuilder<E, ContractRef, CodeHash, GasLimit, Endowment, Set<ExecutionInput<Args>>, Salt, RetType>
Sets the value transferred upon the execution of the call.
source§impl<E, ContractRef, CodeHash, GasLimit, Endowment, Args, RetType> CreateBuilder<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Unset<Salt>, RetType>where
E: Environment,
impl<E, ContractRef, CodeHash, GasLimit, Endowment, Args, RetType> CreateBuilder<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Unset<Salt>, RetType>where E: Environment,
sourcepub fn salt_bytes<Salt>(
self,
salt: Salt
) -> CreateBuilder<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Set<Salt>, RetType>where
Salt: AsRef<[u8]>,
pub fn salt_bytes<Salt>( self, salt: Salt ) -> CreateBuilder<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Set<Salt>, RetType>where Salt: AsRef<[u8]>,
Sets the value transferred upon the execution of the call.
source§impl<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Salt> CreateBuilder<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Salt, Unset<ReturnType<()>>>where
E: Environment,
impl<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Salt> CreateBuilder<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Salt, Unset<ReturnType<()>>>where E: Environment,
sourcepub fn returns<R>(
self
) -> CreateBuilder<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Salt, Set<ReturnType<R>>>where
ContractRef: FromAccountId<E>,
R: ConstructorReturnType<ContractRef>,
pub fn returns<R>( self ) -> CreateBuilder<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Salt, Set<ReturnType<R>>>where ContractRef: FromAccountId<E>, R: ConstructorReturnType<ContractRef>,
Sets the type of the returned value upon the execution of the constructor.
Note
Constructors are not able to return arbitrary values. Instead a successful call to a constructor returns the address at which the contract was instantiated.
Therefore this must always be a reference (i.e ContractRef
) to the contract
you’re trying to instantiate.
source§impl<E, ContractRef, GasLimit, Args, Salt, RetType> CreateBuilder<E, ContractRef, Set<E::Hash>, GasLimit, Set<E::Balance>, Set<ExecutionInput<Args>>, Set<Salt>, Set<ReturnType<RetType>>>where
E: Environment,
GasLimit: Unwrap<Output = u64>,
impl<E, ContractRef, GasLimit, Args, Salt, RetType> CreateBuilder<E, ContractRef, Set<E::Hash>, GasLimit, Set<E::Balance>, Set<ExecutionInput<Args>>, Set<Salt>, Set<ReturnType<RetType>>>where E: Environment, GasLimit: Unwrap<Output = u64>,
sourcepub fn params(self) -> CreateParams<E, ContractRef, Args, Salt, RetType>
pub fn params(self) -> CreateParams<E, ContractRef, Args, Salt, RetType>
Finalizes the create builder, allowing it to instantiate a contract.
source§impl<E, ContractRef, GasLimit, Args, Salt, RetType> CreateBuilder<E, ContractRef, Set<E::Hash>, GasLimit, Set<E::Balance>, Set<ExecutionInput<Args>>, Set<Salt>, Set<ReturnType<RetType>>>where
E: Environment,
ContractRef: FromAccountId<E>,
GasLimit: Unwrap<Output = u64>,
Args: Encode,
Salt: AsRef<[u8]>,
RetType: ConstructorReturnType<ContractRef>,
impl<E, ContractRef, GasLimit, Args, Salt, RetType> CreateBuilder<E, ContractRef, Set<E::Hash>, GasLimit, Set<E::Balance>, Set<ExecutionInput<Args>>, Set<Salt>, Set<ReturnType<RetType>>>where E: Environment, ContractRef: FromAccountId<E>, GasLimit: Unwrap<Output = u64>, Args: Encode, Salt: AsRef<[u8]>, RetType: ConstructorReturnType<ContractRef>,
sourcepub fn instantiate(
self
) -> <RetType as ConstructorReturnType<ContractRef>>::Output
pub fn instantiate( self ) -> <RetType as ConstructorReturnType<ContractRef>>::Output
Instantiates the contract and returns its account ID back to the caller.
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_instantiate
method
instead.
sourcepub fn try_instantiate(
self
) -> Result<ConstructorResult<<RetType as ConstructorReturnType<ContractRef>>::Output>, Error>
pub fn try_instantiate( self ) -> Result<ConstructorResult<<RetType as ConstructorReturnType<ContractRef>>::Output>, Error>
Instantiates the contract and returns its account ID back to the caller.
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.
Auto Trait Implementations§
impl<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Salt, RetType> RefUnwindSafe for CreateBuilder<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Salt, RetType>where Args: RefUnwindSafe, CodeHash: RefUnwindSafe, Endowment: RefUnwindSafe, GasLimit: RefUnwindSafe, RetType: RefUnwindSafe, Salt: RefUnwindSafe,
impl<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Salt, RetType> Send for CreateBuilder<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Salt, RetType>where Args: Send, CodeHash: Send, Endowment: Send, GasLimit: Send, RetType: Send, Salt: Send,
impl<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Salt, RetType> Sync for CreateBuilder<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Salt, RetType>where Args: Sync, CodeHash: Sync, Endowment: Sync, GasLimit: Sync, RetType: Sync, Salt: Sync,
impl<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Salt, RetType> Unpin for CreateBuilder<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Salt, RetType>where Args: Unpin, CodeHash: Unpin, Endowment: Unpin, GasLimit: Unpin, RetType: Unpin, Salt: Unpin,
impl<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Salt, RetType> UnwindSafe for CreateBuilder<E, ContractRef, CodeHash, GasLimit, Endowment, Args, Salt, RetType>where Args: UnwindSafe, CodeHash: UnwindSafe, Endowment: UnwindSafe, GasLimit: UnwindSafe, RetType: UnwindSafe, Salt: UnwindSafe,
Blanket Implementations§
§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.