#[repr(u8)]pub enum GroupPointerInstruction {
Initialize = 0,
Update = 1,
}
Expand description
Group pointer extension instructions
Variants§
Initialize = 0
Initialize a new mint with a group pointer
Fails if the mint has already been initialized, so must be called before
InitializeMint
.
The mint must have exactly enough space allocated for the base mint (82 bytes), plus 83 bytes of padding, 1 byte reserved for the account type, then space required for this extension, plus any others.
Accounts expected by this instruction:
[writable]
The mint to initialize.
Data expected by this instruction:
crate::extension::group_pointer::instruction::InitializeInstructionData
Update = 1
Update the group pointer address. Only supported for mints that
include the GroupPointer
extension.
Accounts expected by this instruction:
- Single authority
[writable]
The mint.[signer]
The group pointer authority.
- Multisignature authority
[writable]
The mint.[]
The mint’s group pointer authority.- ..2+M
[signer]
M signer accounts.
Data expected by this instruction:
crate::extension::group_pointer::instruction::UpdateInstructionData
Trait Implementations§
Source§impl Clone for GroupPointerInstruction
impl Clone for GroupPointerInstruction
Source§fn clone(&self) -> GroupPointerInstruction
fn clone(&self) -> GroupPointerInstruction
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GroupPointerInstruction
impl Debug for GroupPointerInstruction
Source§impl From<GroupPointerInstruction> for u8
impl From<GroupPointerInstruction> for u8
Source§fn from(enum_value: GroupPointerInstruction) -> Self
fn from(enum_value: GroupPointerInstruction) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GroupPointerInstruction
impl PartialEq for GroupPointerInstruction
Source§impl TryFrom<u8> for GroupPointerInstruction
impl TryFrom<u8> for GroupPointerInstruction
Source§type Error = TryFromPrimitiveError<GroupPointerInstruction>
type Error = TryFromPrimitiveError<GroupPointerInstruction>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for GroupPointerInstruction
impl TryFromPrimitive for GroupPointerInstruction
const NAME: &'static str = "GroupPointerInstruction"
type Primitive = u8
type Error = TryFromPrimitiveError<GroupPointerInstruction>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for GroupPointerInstruction
impl StructuralPartialEq for GroupPointerInstruction
Auto Trait Implementations§
impl Freeze for GroupPointerInstruction
impl RefUnwindSafe for GroupPointerInstruction
impl Send for GroupPointerInstruction
impl Sync for GroupPointerInstruction
impl Unpin for GroupPointerInstruction
impl UnwindSafe for GroupPointerInstruction
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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