pub struct QueuedAccountUpdate {
pub pda_address: String,
pub account_type: String,
pub account_data: Value,
pub slot: u64,
pub write_version: u64,
pub signature: String,
}Expand description
Input for queueing an account update.
Fields§
§pda_address: String§account_type: String§account_data: Value§slot: u64§write_version: u64§signature: StringTrait Implementations§
Source§impl Clone for QueuedAccountUpdate
impl Clone for QueuedAccountUpdate
Source§fn clone(&self) -> QueuedAccountUpdate
fn clone(&self) -> QueuedAccountUpdate
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 QueuedAccountUpdate
impl RefUnwindSafe for QueuedAccountUpdate
impl Send for QueuedAccountUpdate
impl Sync for QueuedAccountUpdate
impl Unpin for QueuedAccountUpdate
impl UnwindSafe for QueuedAccountUpdate
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