pub struct AccountUpdate {
pub address: Bytes,
pub chain: Chain,
pub slots: HashMap<Bytes, Bytes>,
pub balance: Option<Bytes>,
pub code: Option<Bytes>,
pub change: ChangeType,
}Fields§
§address: Bytes§chain: Chain§slots: HashMap<Bytes, Bytes>§balance: Option<Bytes>§code: Option<Bytes>§change: ChangeTypeImplementations§
Trait Implementations§
Source§impl Clone for AccountUpdate
impl Clone for AccountUpdate
Source§fn clone(&self) -> AccountUpdate
fn clone(&self) -> AccountUpdate
Returns a duplicate 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 AccountUpdate
impl Debug for AccountUpdate
Source§impl<'de> Deserialize<'de> for AccountUpdate
impl<'de> Deserialize<'de> for AccountUpdate
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
Source§impl From<AccountDelta> for AccountUpdate
impl From<AccountDelta> for AccountUpdate
Source§fn from(value: AccountDelta) -> Self
fn from(value: AccountDelta) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AccountUpdate
impl PartialEq for AccountUpdate
Source§impl Serialize for AccountUpdate
impl Serialize for AccountUpdate
Source§impl<'__s> ToSchema<'__s> for AccountUpdate
impl<'__s> ToSchema<'__s> for AccountUpdate
impl StructuralPartialEq for AccountUpdate
Auto Trait Implementations§
impl !Freeze for AccountUpdate
impl RefUnwindSafe for AccountUpdate
impl Send for AccountUpdate
impl Sync for AccountUpdate
impl Unpin for AccountUpdate
impl UnwindSafe for AccountUpdate
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