pub struct Account {
pub comment: Option<String>,
pub nonce: Option<U64Value>,
pub balance: Option<BigUintValue>,
pub dcdt: Option<BTreeMap<BytesKey, BigUintValue>>,
pub username: Option<BytesValue>,
pub storage: BTreeMap<BytesKey, BytesValue>,
pub code: Option<BytesValue>,
pub owner: Option<AddressValue>,
}Fields§
§comment: Option<String>§nonce: Option<U64Value>§balance: Option<BigUintValue>§dcdt: Option<BTreeMap<BytesKey, BigUintValue>>§username: Option<BytesValue>§storage: BTreeMap<BytesKey, BytesValue>§code: Option<BytesValue>§owner: Option<AddressValue>Trait Implementations§
Source§impl InterpretableFrom<AccountRaw> for Account
impl InterpretableFrom<AccountRaw> for Account
fn interpret_from(from: AccountRaw, context: &InterpreterContext) -> Self
Auto Trait Implementations§
impl Freeze for Account
impl RefUnwindSafe for Account
impl Send for Account
impl Sync for Account
impl Unpin for Account
impl UnwindSafe for Account
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