pub struct AccountDetails {
pub name: String,
pub description: Option<String>,
pub link: Option<String>,
pub namespace: Option<String>,
pub install_modules: Vec<ModuleInstallConfig>,
pub account_id: Option<u32>,
}
Expand description
A helper struct that contains fields from abstract_std::account::state::AccountInfo
Fields§
§name: String
§description: Option<String>
§link: Option<String>
§namespace: Option<String>
§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 Freeze for AccountDetails
impl RefUnwindSafe for AccountDetails
impl Send for AccountDetails
impl Sync for AccountDetails
impl Unpin for AccountDetails
impl UnwindSafe for AccountDetails
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> 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