pub struct DelegateDataV1Cpi<'a, 'b> {Show 16 fields
pub __program: &'b AccountInfo<'a>,
pub delegate_record: Option<&'b AccountInfo<'a>>,
pub delegate: &'b AccountInfo<'a>,
pub metadata: &'b AccountInfo<'a>,
pub master_edition: Option<&'b AccountInfo<'a>>,
pub token_record: Option<&'b AccountInfo<'a>>,
pub mint: &'b AccountInfo<'a>,
pub token: Option<&'b AccountInfo<'a>>,
pub authority: &'b AccountInfo<'a>,
pub payer: &'b AccountInfo<'a>,
pub system_program: &'b AccountInfo<'a>,
pub sysvar_instructions: &'b AccountInfo<'a>,
pub spl_token_program: Option<&'b AccountInfo<'a>>,
pub authorization_rules_program: Option<&'b AccountInfo<'a>>,
pub authorization_rules: Option<&'b AccountInfo<'a>>,
pub __args: DelegateDataV1InstructionArgs,
}
Expand description
delegate_data_v1
CPI instruction.
Fields§
§__program: &'b AccountInfo<'a>
The program to invoke.
delegate_record: Option<&'b AccountInfo<'a>>
Delegate record account
delegate: &'b AccountInfo<'a>
Owner of the delegated account
metadata: &'b AccountInfo<'a>
Metadata account
master_edition: Option<&'b AccountInfo<'a>>
Master Edition account
token_record: Option<&'b AccountInfo<'a>>
Token record account
mint: &'b AccountInfo<'a>
Mint of metadata
token: Option<&'b AccountInfo<'a>>
Token account of mint
Update authority or token owner
payer: &'b AccountInfo<'a>
Payer
system_program: &'b AccountInfo<'a>
System Program
sysvar_instructions: &'b AccountInfo<'a>
Instructions sysvar account
spl_token_program: Option<&'b AccountInfo<'a>>
SPL Token Program
Token Authorization Rules Program
Token Authorization Rules account
__args: DelegateDataV1InstructionArgs
The arguments for the instruction.
Implementations§
source§impl<'a, 'b> DelegateDataV1Cpi<'a, 'b>
impl<'a, 'b> DelegateDataV1Cpi<'a, 'b>
pub fn new( program: &'b AccountInfo<'a>, accounts: DelegateDataV1CpiAccounts<'a, 'b>, args: DelegateDataV1InstructionArgs ) -> Self
pub fn invoke(&self) -> ProgramResult
pub fn invoke_with_remaining_accounts( &self, remaining_accounts: &[(&'b AccountInfo<'a>, bool, bool)] ) -> ProgramResult
pub fn invoke_signed(&self, signers_seeds: &[&[&[u8]]]) -> ProgramResult
pub fn invoke_signed_with_remaining_accounts( &self, signers_seeds: &[&[&[u8]]], remaining_accounts: &[(&'b AccountInfo<'a>, bool, bool)] ) -> ProgramResult
Auto Trait Implementations§
impl<'a, 'b> !RefUnwindSafe for DelegateDataV1Cpi<'a, 'b>
impl<'a, 'b> !Send for DelegateDataV1Cpi<'a, 'b>
impl<'a, 'b> !Sync for DelegateDataV1Cpi<'a, 'b>
impl<'a, 'b> Unpin for DelegateDataV1Cpi<'a, 'b>
impl<'a, 'b> !UnwindSafe for DelegateDataV1Cpi<'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