pub struct DelegateAccounts<'a, 'info> {
pub payer: &'a AccountInfo<'info>,
pub pda: &'a AccountInfo<'info>,
pub owner_program: &'a AccountInfo<'info>,
pub buffer: &'a AccountInfo<'info>,
pub delegation_record: &'a AccountInfo<'info>,
pub delegation_metadata: &'a AccountInfo<'info>,
pub delegation_program: &'a AccountInfo<'info>,
pub system_program: &'a AccountInfo<'info>,
}Fields§
§payer: &'a AccountInfo<'info>§pda: &'a AccountInfo<'info>§owner_program: &'a AccountInfo<'info>§buffer: &'a AccountInfo<'info>§delegation_record: &'a AccountInfo<'info>§delegation_metadata: &'a AccountInfo<'info>§delegation_program: &'a AccountInfo<'info>§system_program: &'a AccountInfo<'info>Auto Trait Implementations§
impl<'a, 'info> Freeze for DelegateAccounts<'a, 'info>
impl<'a, 'info> !RefUnwindSafe for DelegateAccounts<'a, 'info>
impl<'a, 'info> !Send for DelegateAccounts<'a, 'info>
impl<'a, 'info> !Sync for DelegateAccounts<'a, 'info>
impl<'a, 'info> Unpin for DelegateAccounts<'a, 'info>
impl<'a, 'info> !UnwindSafe for DelegateAccounts<'a, 'info>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more