Struct spl_token_2022::extension::confidential_transfer::account_info::EmptyAccountAccountInfo
source · #[repr(C)]pub struct EmptyAccountAccountInfo { /* private fields */ }
Expand description
Confidential transfer extension information needed to construct an
EmptyAccount
instruction.
Implementations§
source§impl EmptyAccountAccountInfo
impl EmptyAccountAccountInfo
sourcepub fn new(account: &ConfidentialTransferAccount) -> Self
pub fn new(account: &ConfidentialTransferAccount) -> Self
Create the EmptyAccount
instruction account information from
ConfidentialTransferAccount
.
sourcepub fn generate_proof_data(
&self,
elgamal_keypair: &ElGamalKeypair,
) -> Result<ZeroBalanceProofData, TokenError>
pub fn generate_proof_data( &self, elgamal_keypair: &ElGamalKeypair, ) -> Result<ZeroBalanceProofData, TokenError>
Create an empty account proof data.
Trait Implementations§
source§impl Clone for EmptyAccountAccountInfo
impl Clone for EmptyAccountAccountInfo
source§fn clone(&self) -> EmptyAccountAccountInfo
fn clone(&self) -> EmptyAccountAccountInfo
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 EmptyAccountAccountInfo
impl Debug for EmptyAccountAccountInfo
source§impl Default for EmptyAccountAccountInfo
impl Default for EmptyAccountAccountInfo
source§fn default() -> EmptyAccountAccountInfo
fn default() -> EmptyAccountAccountInfo
Returns the “default value” for a type. Read more
source§impl PartialEq for EmptyAccountAccountInfo
impl PartialEq for EmptyAccountAccountInfo
source§fn eq(&self, other: &EmptyAccountAccountInfo) -> bool
fn eq(&self, other: &EmptyAccountAccountInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for EmptyAccountAccountInfo
impl Pod for EmptyAccountAccountInfo
impl StructuralPartialEq for EmptyAccountAccountInfo
Auto Trait Implementations§
impl Freeze for EmptyAccountAccountInfo
impl RefUnwindSafe for EmptyAccountAccountInfo
impl Send for EmptyAccountAccountInfo
impl Sync for EmptyAccountAccountInfo
impl Unpin for EmptyAccountAccountInfo
impl UnwindSafe for EmptyAccountAccountInfo
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> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
§type Bits = T
type Bits = T
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
.source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self
.source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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