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