pub struct AccountChange {
pub pubkey: Pubkey,
pub account_type: String,
pub access: AccountAccess,
pub account_index: usize,
pub lamports_before: u64,
pub lamports_after: u64,
pub data_len_before: usize,
pub data_len_after: usize,
pub owner: Pubkey,
pub executable: bool,
pub rent_epoch: u64,
}Expand description
Account state changes during transaction
Fields§
§pubkey: Pubkey§account_type: String§access: AccountAccess§account_index: usize§lamports_before: u64§lamports_after: u64§data_len_before: usize§data_len_after: usize§owner: Pubkey§executable: bool§rent_epoch: u64Trait Implementations§
Source§impl Clone for AccountChange
impl Clone for AccountChange
Source§fn clone(&self) -> AccountChange
fn clone(&self) -> AccountChange
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 moreAuto Trait Implementations§
impl Freeze for AccountChange
impl RefUnwindSafe for AccountChange
impl Send for AccountChange
impl Sync for AccountChange
impl Unpin for AccountChange
impl UnwindSafe for AccountChange
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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