pub struct ClosePaymentCpiAccounts<'a, 'b> {
pub payer: &'b AccountInfo<'a>,
pub payment: &'b AccountInfo<'a>,
pub operator_authority: &'b AccountInfo<'a>,
pub operator: &'b AccountInfo<'a>,
pub merchant: &'b AccountInfo<'a>,
pub buyer: &'b AccountInfo<'a>,
pub merchant_operator_config: &'b AccountInfo<'a>,
pub mint: &'b AccountInfo<'a>,
pub system_program: &'b AccountInfo<'a>,
}Expand description
close_payment CPI accounts.
Fields§
§payer: &'b AccountInfo<'a>§payment: &'b AccountInfo<'a>Payment PDA to close
operator: &'b AccountInfo<'a>Operator PDA
merchant: &'b AccountInfo<'a>Merchant PDA
buyer: &'b AccountInfo<'a>Buyer account
merchant_operator_config: &'b AccountInfo<'a>Merchant Operator Config PDA
mint: &'b AccountInfo<'a>Token mint
system_program: &'b AccountInfo<'a>Auto Trait Implementations§
impl<'a, 'b> Freeze for ClosePaymentCpiAccounts<'a, 'b>
impl<'a, 'b> !RefUnwindSafe for ClosePaymentCpiAccounts<'a, 'b>
impl<'a, 'b> !Send for ClosePaymentCpiAccounts<'a, 'b>
impl<'a, 'b> !Sync for ClosePaymentCpiAccounts<'a, 'b>
impl<'a, 'b> Unpin for ClosePaymentCpiAccounts<'a, 'b>
impl<'a, 'b> !UnwindSafe for ClosePaymentCpiAccounts<'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