pub struct TestKeypairs {Show 17 fields
pub state_merkle_tree: Keypair,
pub nullifier_queue: Keypair,
pub governance_authority: Keypair,
pub forester: Keypair,
pub address_merkle_tree: Keypair,
pub address_merkle_tree_queue: Keypair,
pub cpi_context_account: Keypair,
pub system_program: Keypair,
pub registry_program: Keypair,
pub batched_state_merkle_tree: Keypair,
pub batched_output_queue: Keypair,
pub batched_cpi_context: Keypair,
pub batch_address_merkle_tree: Keypair,
pub state_merkle_tree_2: Keypair,
pub nullifier_queue_2: Keypair,
pub cpi_context_2: Keypair,
pub group_pda_seed: Keypair,
}Fields§
§state_merkle_tree: Keypair§nullifier_queue: Keypair§forester: Keypair§address_merkle_tree: Keypair§address_merkle_tree_queue: Keypair§cpi_context_account: Keypair§system_program: Keypair§registry_program: Keypair§batched_state_merkle_tree: Keypair§batched_output_queue: Keypair§batched_cpi_context: Keypair§batch_address_merkle_tree: Keypair§state_merkle_tree_2: Keypair§nullifier_queue_2: Keypair§cpi_context_2: Keypair§group_pda_seed: KeypairImplementations§
Source§impl TestKeypairs
impl TestKeypairs
pub fn program_test_default() -> TestKeypairs
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TestKeypairs
impl RefUnwindSafe for TestKeypairs
impl Send for TestKeypairs
impl Sync for TestKeypairs
impl Unpin for TestKeypairs
impl UnwindSafe for TestKeypairs
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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