pub struct TakeBidT22 {Show 19 fields
pub fee_vault: Pubkey,
pub seller: Pubkey,
pub bid_state: Pubkey,
pub owner: Pubkey,
pub taker_broker: Option<Pubkey>,
pub maker_broker: Option<Pubkey>,
pub shared_escrow: Pubkey,
pub whitelist: Pubkey,
pub seller_ta: Pubkey,
pub mint: Pubkey,
pub owner_ta: Pubkey,
pub token_program: Pubkey,
pub associated_token_program: Pubkey,
pub system_program: Pubkey,
pub marketplace_program: Pubkey,
pub escrow_program: Pubkey,
pub cosigner: Option<Pubkey>,
pub mint_proof: Pubkey,
pub rent_destination: Pubkey,
}Expand description
Accounts.
Fields§
§fee_vault: Pubkey§seller: Pubkey§bid_state: Pubkey§owner: Pubkey§taker_broker: Option<Pubkey>§maker_broker: Option<Pubkey>§whitelist: Pubkey§seller_ta: Pubkey§mint: Pubkey§owner_ta: Pubkey§token_program: Pubkey§associated_token_program: Pubkey§system_program: Pubkey§marketplace_program: Pubkey§escrow_program: Pubkey§cosigner: Option<Pubkey>§mint_proof: Pubkeyintentionally not deserializing, it would be dummy in the case of VOC/FVC based verification
rent_destination: PubkeyImplementations§
Source§impl TakeBidT22
impl TakeBidT22
pub fn instruction(&self, args: TakeBidT22InstructionArgs) -> Instruction
pub fn instruction_with_remaining_accounts( &self, args: TakeBidT22InstructionArgs, remaining_accounts: &[AccountMeta], ) -> Instruction
Auto Trait Implementations§
impl Freeze for TakeBidT22
impl RefUnwindSafe for TakeBidT22
impl Send for TakeBidT22
impl Sync for TakeBidT22
impl Unpin for TakeBidT22
impl UnwindSafe for TakeBidT22
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> 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