pub struct PendingAccountUpdate {
pub account_type: String,
pub pda_address: String,
pub account_data: Value,
pub slot: u64,
pub write_version: u64,
pub signature: String,
pub queued_at: i64,
}Expand description
Internal representation of a pending account update with queue metadata.
Fields§
§account_type: String§pda_address: String§account_data: Value§slot: u64§write_version: u64§signature: String§queued_at: i64Trait Implementations§
Source§impl Clone for PendingAccountUpdate
impl Clone for PendingAccountUpdate
Source§fn clone(&self) -> PendingAccountUpdate
fn clone(&self) -> PendingAccountUpdate
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 PendingAccountUpdate
impl RefUnwindSafe for PendingAccountUpdate
impl Send for PendingAccountUpdate
impl Sync for PendingAccountUpdate
impl Unpin for PendingAccountUpdate
impl UnwindSafe for PendingAccountUpdate
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