pub struct Store {
pub config_account: (Pubkey, bool),
}
Expand description
Accounts.
Fields§
§config_account: (Pubkey, bool)
The config account to be modified.
Must sign during the first call to store
to initialize the account,
or if no signers are configured in the config data.
Implementations§
Source§impl Store
impl Store
pub fn instruction(&self, args: StoreInstructionArgs) -> Instruction
pub fn instruction_with_remaining_accounts( &self, args: StoreInstructionArgs, remaining_accounts: &[AccountMeta], ) -> Instruction
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Store
impl RefUnwindSafe for Store
impl Send for Store
impl Sync for Store
impl Unpin for Store
impl UnwindSafe for Store
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