`allocate` CPI instruction.
| 135 | |
| 136 | /// `allocate` CPI instruction. |
| 137 | pub struct AllocateCpi<'a, 'b> { |
| 138 | /// The program to invoke. |
| 139 | pub __program: &'b solana_account_info::AccountInfo<'a>, |
| 140 | |
| 141 | pub new_account: &'b solana_account_info::AccountInfo<'a>, |
| 142 | /// The arguments for the instruction. |
| 143 | pub __args: AllocateInstructionArgs, |
| 144 | } |
| 145 | |
| 146 | impl<'a, 'b> AllocateCpi<'a, 'b> { |
| 147 | pub fn new( |
nothing calls this directly
no outgoing calls
no test coverage detected