pub struct AccountStateSnapshot {
pub lamports_before: u64,
pub lamports_after: u64,
pub data_len_before: usize,
pub data_len_after: usize,
}Expand description
Pre and post transaction account state snapshot
Fields§
§lamports_before: u64§lamports_after: u64§data_len_before: usize§data_len_after: usizeTrait Implementations§
Source§impl Clone for AccountStateSnapshot
impl Clone for AccountStateSnapshot
Source§fn clone(&self) -> AccountStateSnapshot
fn clone(&self) -> AccountStateSnapshot
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 AccountStateSnapshot
impl Debug for AccountStateSnapshot
Source§impl Default for AccountStateSnapshot
impl Default for AccountStateSnapshot
Source§fn default() -> AccountStateSnapshot
fn default() -> AccountStateSnapshot
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AccountStateSnapshot
impl RefUnwindSafe for AccountStateSnapshot
impl Send for AccountStateSnapshot
impl Sync for AccountStateSnapshot
impl Unpin for AccountStateSnapshot
impl UnwindSafe for AccountStateSnapshot
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> 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