Struct abstract_core::account_factory::state::Context
source · pub struct Context {
pub account_proxy_address: Option<Addr>,
pub manager_module: Option<Module>,
pub proxy_module: Option<Module>,
pub account_id: AccountId,
pub additional_config: AdditionalContextConfig,
pub install_modules: Vec<ModuleInstallConfig>,
pub funds_for_install: Vec<Coin>,
}
Expand description
Account Factory context for post-[crate::abstract_manager
] [crate::abstract_proxy
] creation
Fields§
§account_proxy_address: Option<Addr>
§manager_module: Option<Module>
§proxy_module: Option<Module>
§account_id: AccountId
§additional_config: AdditionalContextConfig
§install_modules: Vec<ModuleInstallConfig>
§funds_for_install: Vec<Coin>
Trait Implementations§
source§impl<'de> Deserialize<'de> for Context
impl<'de> Deserialize<'de> for Context
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
Auto Trait Implementations§
impl RefUnwindSafe for Context
impl Send for Context
impl Sync for Context
impl Unpin for Context
impl UnwindSafe for Context
Blanket Implementations§
§impl<U> As for U
impl<U> As for U
§fn as_<T>(self) -> Twhere
T: CastFrom<U>,
fn as_<T>(self) -> Twhere T: CastFrom<U>,
Casts
self
to type T
. The semantics of numeric casting with the as
operator are followed, so <T as As>::as_::<U>
can be used in the same way as T as U
for numeric conversions. Read moresource§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