pub struct MemoryWriteCpiAccounts<'a, 'b> {
pub program_id: &'b AccountInfo<'a>,
pub system_program: &'b AccountInfo<'a>,
pub payer: &'b AccountInfo<'a>,
pub memory: &'b AccountInfo<'a>,
pub source_account: &'b AccountInfo<'a>,
}Expand description
memory_write CPI accounts.
Fields§
§program_id: &'b AccountInfo<'a>Lighthouse program
system_program: &'b AccountInfo<'a>System program
payer: &'b AccountInfo<'a>Payer account
memory: &'b AccountInfo<'a>Memory account
source_account: &'b AccountInfo<'a>Account to be written to memory
Auto Trait Implementations§
impl<'a, 'b> Freeze for MemoryWriteCpiAccounts<'a, 'b>
impl<'a, 'b> !RefUnwindSafe for MemoryWriteCpiAccounts<'a, 'b>
impl<'a, 'b> !Send for MemoryWriteCpiAccounts<'a, 'b>
impl<'a, 'b> !Sync for MemoryWriteCpiAccounts<'a, 'b>
impl<'a, 'b> Unpin for MemoryWriteCpiAccounts<'a, 'b>
impl<'a, 'b> !UnwindSafe for MemoryWriteCpiAccounts<'a, 'b>
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