pub struct QueuedInstructionEvent {
pub pda_address: String,
pub event_type: String,
pub event_data: Value,
pub slot: u64,
pub signature: String,
}Expand description
Input for queueing an instruction event when PDA lookup fails.
Fields§
§pda_address: String§event_type: String§event_data: Value§slot: u64§signature: StringTrait Implementations§
Source§impl Clone for QueuedInstructionEvent
impl Clone for QueuedInstructionEvent
Source§fn clone(&self) -> QueuedInstructionEvent
fn clone(&self) -> QueuedInstructionEvent
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 QueuedInstructionEvent
impl RefUnwindSafe for QueuedInstructionEvent
impl Send for QueuedInstructionEvent
impl Sync for QueuedInstructionEvent
impl Unpin for QueuedInstructionEvent
impl UnwindSafe for QueuedInstructionEvent
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