pub struct AddGroupsToGroupV1 {
pub parent_group: Pubkey,
pub payer: Pubkey,
pub authority: Option<Pubkey>,
pub system_program: Pubkey,
}Expand description
Accounts.
Fields§
§parent_group: PubkeyThe address of the parent group to modify
payer: PubkeyThe account paying for storage fees
The update authority of the parent and child groups
system_program: PubkeyThe system program
Implementations§
Source§impl AddGroupsToGroupV1
impl AddGroupsToGroupV1
pub fn instruction( &self, args: AddGroupsToGroupV1InstructionArgs, ) -> Instruction
pub fn instruction_with_remaining_accounts( &self, args: AddGroupsToGroupV1InstructionArgs, remaining_accounts: &[AccountMeta], ) -> Instruction
Auto Trait Implementations§
impl Freeze for AddGroupsToGroupV1
impl RefUnwindSafe for AddGroupsToGroupV1
impl Send for AddGroupsToGroupV1
impl Sync for AddGroupsToGroupV1
impl Unpin for AddGroupsToGroupV1
impl UnsafeUnpin for AddGroupsToGroupV1
impl UnwindSafe for AddGroupsToGroupV1
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