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