pub struct RecoverNested<'a> {
pub nested_associated_account: &'a AccountView,
pub nested_token_mint: &'a AccountView,
pub destination_associated_account: &'a AccountView,
pub owner_associated_account: &'a AccountView,
pub owner_token_mint: &'a AccountView,
pub wallet: &'a AccountView,
pub token_program: &'a AccountView,
}Expand description
Builder for ATA RecoverNested (instruction 2).
Fields§
§nested_associated_account: &'a AccountView§nested_token_mint: &'a AccountView§destination_associated_account: &'a AccountView§owner_associated_account: &'a AccountView§owner_token_mint: &'a AccountView§wallet: &'a AccountView§token_program: &'a AccountViewImplementations§
Source§impl RecoverNested<'_>
impl RecoverNested<'_>
pub fn invoke(&self) -> Result<(), ProgramError>
pub fn invoke_signed( &self, signers: &[Signer<'_, '_>], ) -> Result<(), ProgramError>
Auto Trait Implementations§
impl<'a> Freeze for RecoverNested<'a>
impl<'a> RefUnwindSafe for RecoverNested<'a>
impl<'a> Send for RecoverNested<'a>
impl<'a> Sync for RecoverNested<'a>
impl<'a> Unpin for RecoverNested<'a>
impl<'a> UnsafeUnpin for RecoverNested<'a>
impl<'a> UnwindSafe for RecoverNested<'a>
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