`assign` CPI instruction.
| 139 | |
| 140 | /// `assign` CPI instruction. |
| 141 | pub struct AssignCpi<'a, 'b> { |
| 142 | /// The program to invoke. |
| 143 | pub __program: &'b solana_account_info::AccountInfo<'a>, |
| 144 | |
| 145 | pub account: &'b solana_account_info::AccountInfo<'a>, |
| 146 | /// The arguments for the instruction. |
| 147 | pub __args: AssignInstructionArgs, |
| 148 | } |
| 149 | |
| 150 | impl<'a, 'b> AssignCpi<'a, 'b> { |
| 151 | pub fn new( |
nothing calls this directly
no outgoing calls
no test coverage detected