pub struct Contract { /* private fields */ }
Expand description
An ink! contract definition consisting of the ink! configuration and module.
This is the root of any ink! smart contract definition. It contains every information accessible to the ink! smart contract macros. It is also used as the root source for the ink! code generation.
§Example
#[ink::contract(/* optional ink! configurations */)]
mod my_contract {
/* ink! and Rust definitions */
}
Implementations§
Source§impl Contract
impl Contract
Sourcepub fn new(
ink_config: TokenStream2,
ink_module: TokenStream2,
) -> Result<Self, Error>
pub fn new( ink_config: TokenStream2, ink_module: TokenStream2, ) -> Result<Self, Error>
Creates a new ink! contract from the given ink! configuration and module token streams.
The ink! macro should use this constructor in order to setup ink!.
§Note
- The
ink_config
token stream must properly decode intoir::Config
. - The
ink_module
token stream must properly decode intoir::ItemMod
.
§Errors
Returns an error if the provided token stream cannot be decoded properly into a valid ink! configuration or ink! module respectively.
Sourcepub fn module(&self) -> &ItemMod
pub fn module(&self) -> &ItemMod
Returns the ink! inline module definition.
§Note
The ink! inline module definition is the module that comprises the whole ink! smart contract, e.g.:
#[ink::contract]
mod my_contract {
// ...definitions
}
Sourcepub fn config(&self) -> &Config
pub fn config(&self) -> &Config
Returns the configuration of the ink! smart contract.
§Note
The configuration is given via the #[ink::contract(config))]
attribute
macro annotation itself within the (config)
part. The available fields
are the following:
types
: To specifyEnvironment
different from the default environment types.
Note that we might add more configuration fields in the future if necessary.
Auto Trait Implementations§
impl Freeze for Contract
impl RefUnwindSafe for Contract
impl !Send for Contract
impl !Sync for Contract
impl Unpin for Contract
impl UnwindSafe for Contract
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
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>
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>
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