Struct abstract_interface::AccountDetails
source · pub struct AccountDetails {
pub name: String,
pub description: Option<String>,
pub link: Option<String>,
pub namespace: Option<String>,
pub base_asset: Option<AssetEntry>,
pub install_modules: Vec<ModuleInstallConfig>,
pub account_id: Option<u32>,
}
Expand description
A helper struct that contains fields from abstract_core::manager::state::AccountInfo
Fields§
§name: String
§description: Option<String>
§link: Option<String>
§namespace: Option<String>
§base_asset: Option<AssetEntry>
§install_modules: Vec<ModuleInstallConfig>
§account_id: Option<u32>
Trait Implementations§
source§impl Default for AccountDetails
impl Default for AccountDetails
source§fn default() -> AccountDetails
fn default() -> AccountDetails
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for AccountDetails
impl Send for AccountDetails
impl Sync for AccountDetails
impl Unpin for AccountDetails
impl UnwindSafe for AccountDetails
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