pub struct DecodedInstruction {
pub program_id_index: u8,
pub account_indexes: Vec<u8>,
pub data: Vec<u8>,
}Expand description
One compiled instruction exactly as it appears in the message.
Fields§
§program_id_index: u8§account_indexes: Vec<u8>§data: Vec<u8>Trait Implementations§
Source§impl Clone for DecodedInstruction
impl Clone for DecodedInstruction
Source§fn clone(&self) -> DecodedInstruction
fn clone(&self) -> DecodedInstruction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DecodedInstruction
impl Debug for DecodedInstruction
impl Eq for DecodedInstruction
Source§impl PartialEq for DecodedInstruction
impl PartialEq for DecodedInstruction
impl StructuralPartialEq for DecodedInstruction
Auto Trait Implementations§
impl Freeze for DecodedInstruction
impl RefUnwindSafe for DecodedInstruction
impl Send for DecodedInstruction
impl Sync for DecodedInstruction
impl Unpin for DecodedInstruction
impl UnsafeUnpin for DecodedInstruction
impl UnwindSafe for DecodedInstruction
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