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