pub struct IncrementBuilder { /* private fields */ }
Expand description
Implementations§
source§impl IncrementBuilder
impl IncrementBuilder
pub fn new() -> Self
sourcepub fn counter(&mut self, counter: Pubkey) -> &mut Self
pub fn counter(&mut self, counter: Pubkey) -> &mut Self
The program derived address of the counter account to increment (seeds: [‘counter’, authority])
The authority of the counter
sourcepub fn add_remaining_account(&mut self, account: AccountMeta) -> &mut Self
pub fn add_remaining_account(&mut self, account: AccountMeta) -> &mut Self
Add an aditional account to the instruction.
sourcepub fn add_remaining_accounts(&mut self, accounts: &[AccountMeta]) -> &mut Self
pub fn add_remaining_accounts(&mut self, accounts: &[AccountMeta]) -> &mut Self
Add additional accounts to the instruction.
pub fn instruction(&self) -> Instruction
Trait Implementations§
source§impl Clone for IncrementBuilder
impl Clone for IncrementBuilder
source§fn clone(&self) -> IncrementBuilder
fn clone(&self) -> IncrementBuilder
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 IncrementBuilder
impl Debug for IncrementBuilder
source§impl Default for IncrementBuilder
impl Default for IncrementBuilder
source§fn default() -> IncrementBuilder
fn default() -> IncrementBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for IncrementBuilder
impl RefUnwindSafe for IncrementBuilder
impl Send for IncrementBuilder
impl Sync for IncrementBuilder
impl Unpin for IncrementBuilder
impl UnwindSafe for IncrementBuilder
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