pub struct TransactionSigners<C> { /* private fields */ }
Expand description
Transaction Signers.
Implementations§
Source§impl<C: Deref<Target = impl Signer>> TransactionSigners<C>
impl<C: Deref<Target = impl Signer>> TransactionSigners<C>
Sourcepub fn sign_atomic_instruction_group(
&self,
ag: &AtomicGroup,
recent_blockhash: Hash,
options: GetInstructionsOptions,
luts: Option<&AddressLookupTables>,
allow_partial_sign: bool,
) -> Result<VersionedTransaction>
pub fn sign_atomic_instruction_group( &self, ag: &AtomicGroup, recent_blockhash: Hash, options: GetInstructionsOptions, luts: Option<&AddressLookupTables>, allow_partial_sign: bool, ) -> Result<VersionedTransaction>
Sign the given AtomicGroup
.
Trait Implementations§
Source§impl<C: Clone> Clone for TransactionSigners<C>
impl<C: Clone> Clone for TransactionSigners<C>
Source§fn clone(&self) -> TransactionSigners<C>
fn clone(&self) -> TransactionSigners<C>
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<C: Debug> Debug for TransactionSigners<C>
impl<C: Debug> Debug for TransactionSigners<C>
Source§impl<C> Default for TransactionSigners<C>
impl<C> Default for TransactionSigners<C>
Source§impl<C: Deref<Target = impl Signer>> Extend<C> for TransactionSigners<C>
impl<C: Deref<Target = impl Signer>> Extend<C> for TransactionSigners<C>
Source§fn extend<T: IntoIterator<Item = C>>(&mut self, iter: T)
fn extend<T: IntoIterator<Item = C>>(&mut self, iter: T)
Extends a collection with the contents of an iterator. Read more
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
🔬This is a nightly-only experimental API. (
extend_one
)Extends a collection with exactly one element.
Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
🔬This is a nightly-only experimental API. (
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
Source§impl<C: Deref<Target = impl Signer>> FromIterator<C> for TransactionSigners<C>
impl<C: Deref<Target = impl Signer>> FromIterator<C> for TransactionSigners<C>
Source§fn from_iter<T: IntoIterator<Item = C>>(iter: T) -> Self
fn from_iter<T: IntoIterator<Item = C>>(iter: T) -> Self
Creates a value from an iterator. Read more
Auto Trait Implementations§
impl<C> Freeze for TransactionSigners<C>
impl<C> RefUnwindSafe for TransactionSigners<C>where
C: RefUnwindSafe,
impl<C> Send for TransactionSigners<C>where
C: Send,
impl<C> Sync for TransactionSigners<C>where
C: Sync,
impl<C> Unpin for TransactionSigners<C>where
C: Unpin,
impl<C> UnwindSafe for TransactionSigners<C>where
C: UnwindSafe,
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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