pub struct CreateTreeConfigV2 {
pub tree_config: Pubkey,
pub merkle_tree: Pubkey,
pub payer: Pubkey,
pub tree_creator: Option<Pubkey>,
pub log_wrapper: Pubkey,
pub compression_program: Pubkey,
pub system_program: Pubkey,
}Expand description
Accounts.
Fields§
§tree_config: Pubkey§merkle_tree: Pubkey§payer: Pubkey§tree_creator: Option<Pubkey>Optional tree creator, defaults to payer
log_wrapper: Pubkey§compression_program: Pubkey§system_program: PubkeyImplementations§
Source§impl CreateTreeConfigV2
impl CreateTreeConfigV2
pub fn instruction( &self, args: CreateTreeConfigV2InstructionArgs, ) -> Instruction
pub fn instruction_with_remaining_accounts( &self, args: CreateTreeConfigV2InstructionArgs, remaining_accounts: &[AccountMeta], ) -> Instruction
Auto Trait Implementations§
impl Freeze for CreateTreeConfigV2
impl RefUnwindSafe for CreateTreeConfigV2
impl Send for CreateTreeConfigV2
impl Sync for CreateTreeConfigV2
impl Unpin for CreateTreeConfigV2
impl UnsafeUnpin for CreateTreeConfigV2
impl UnwindSafe for CreateTreeConfigV2
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