pub struct AdditionalContextConfig {
pub namespace: Option<String>,
pub base_asset: Option<AssetEntry>,
pub name: String,
pub description: Option<String>,
pub link: Option<String>,
pub owner: GovernanceDetails<String>,
}
Expand description
Account Factory additional config context for post-[crate::abstract_manager
] [crate::abstract_proxy
] creation
Fields§
§namespace: Option<String>
§base_asset: Option<AssetEntry>
§name: String
§description: Option<String>
§link: Option<String>
§owner: GovernanceDetails<String>
Trait Implementations§
source§impl Clone for AdditionalContextConfig
impl Clone for AdditionalContextConfig
source§fn clone(&self) -> AdditionalContextConfig
fn clone(&self) -> AdditionalContextConfig
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 Debug for AdditionalContextConfig
impl Debug for AdditionalContextConfig
source§impl<'de> Deserialize<'de> for AdditionalContextConfig
impl<'de> Deserialize<'de> for AdditionalContextConfig
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 AdditionalContextConfig
impl Send for AdditionalContextConfig
impl Sync for AdditionalContextConfig
impl Unpin for AdditionalContextConfig
impl UnwindSafe for AdditionalContextConfig
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