pub struct InstantiateMsg<Authenticator = Empty> {
pub code_id: u64,
pub owner: GovernanceDetails<String>,
pub account_id: Option<AccountId>,
pub authenticator: Option<Authenticator>,
pub namespace: Option<String>,
pub install_modules: Vec<ModuleInstallConfig>,
pub name: Option<String>,
pub description: Option<String>,
pub link: Option<String>,
}
Expand description
Account Instantiate Msg https://github.com/burnt-labs/contracts/blob/main/contracts/account/src/msg.rs
Fields§
§code_id: u64
Code id of the account
owner: GovernanceDetails<String>
The ownership structure of the Account.
account_id: Option<AccountId>
Optionally specify an account-id for this account. If provided must be between (u32::MAX/2)..u32::MAX range.
authenticator: Option<Authenticator>
Optional authenticator for use with the abstractaccount
cosmos-sdk module.
namespace: Option<String>
Optionally claim a namespace on instantiation. Any fees will be deducted from the account and should be provided on instantiation.
install_modules: Vec<ModuleInstallConfig>
Optionally install modules on instantiation. Any fees will be deducted from the account and should be provided on instantiation.
name: Option<String>
Optional account name.
description: Option<String>
Optional account description.
link: Option<String>
Optional account link.
Trait Implementations§
Source§impl<Authenticator: Clone> Clone for InstantiateMsg<Authenticator>
impl<Authenticator: Clone> Clone for InstantiateMsg<Authenticator>
Source§fn clone(&self) -> InstantiateMsg<Authenticator>
fn clone(&self) -> InstantiateMsg<Authenticator>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<Authenticator: Debug> Debug for InstantiateMsg<Authenticator>
impl<Authenticator: Debug> Debug for InstantiateMsg<Authenticator>
Source§impl<'de, Authenticator> Deserialize<'de> for InstantiateMsg<Authenticator>where
Authenticator: Deserialize<'de>,
impl<'de, Authenticator> Deserialize<'de> for InstantiateMsg<Authenticator>where
Authenticator: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<Authenticator: JsonSchema> JsonSchema for InstantiateMsg<Authenticator>
impl<Authenticator: JsonSchema> JsonSchema for InstantiateMsg<Authenticator>
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreSource§impl<Authenticator: PartialEq> PartialEq for InstantiateMsg<Authenticator>
impl<Authenticator: PartialEq> PartialEq for InstantiateMsg<Authenticator>
Source§fn eq(&self, other: &InstantiateMsg<Authenticator>) -> bool
fn eq(&self, other: &InstantiateMsg<Authenticator>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<Authenticator> Serialize for InstantiateMsg<Authenticator>where
Authenticator: Serialize,
impl<Authenticator> Serialize for InstantiateMsg<Authenticator>where
Authenticator: Serialize,
impl<Authenticator> StructuralPartialEq for InstantiateMsg<Authenticator>
Auto Trait Implementations§
impl<Authenticator> Freeze for InstantiateMsg<Authenticator>where
Authenticator: Freeze,
impl<Authenticator> RefUnwindSafe for InstantiateMsg<Authenticator>where
Authenticator: RefUnwindSafe,
impl<Authenticator> Send for InstantiateMsg<Authenticator>where
Authenticator: Send,
impl<Authenticator> Sync for InstantiateMsg<Authenticator>where
Authenticator: Sync,
impl<Authenticator> Unpin for InstantiateMsg<Authenticator>where
Authenticator: Unpin,
impl<Authenticator> UnwindSafe for InstantiateMsg<Authenticator>where
Authenticator: 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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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