pub struct RawInstructionFrame {
pub accounts_start: *mut u8,
pub account_count: usize,
pub instruction_data: &'static [u8],
pub program_id: Address,
}Expand description
Instruction tail discovered after scanning the loader input buffer.
Fields§
§accounts_start: *mut u8§account_count: usize§instruction_data: &'static [u8]§program_id: AddressTrait Implementations§
Source§impl Clone for RawInstructionFrame
impl Clone for RawInstructionFrame
Source§fn clone(&self) -> RawInstructionFrame
fn clone(&self) -> RawInstructionFrame
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 RawInstructionFrame
impl RefUnwindSafe for RawInstructionFrame
impl !Send for RawInstructionFrame
impl !Sync for RawInstructionFrame
impl Unpin for RawInstructionFrame
impl UnsafeUnpin for RawInstructionFrame
impl UnwindSafe for RawInstructionFrame
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