pub struct TakeBidCore {Show 17 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 asset: Pubkey,
pub collection: Option<Pubkey>,
pub mpl_core_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§asset: Pubkey§collection: Option<Pubkey>§mpl_core_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 TakeBidCore
impl TakeBidCore
pub fn instruction(&self, args: TakeBidCoreInstructionArgs) -> Instruction
pub fn instruction_with_remaining_accounts( &self, args: TakeBidCoreInstructionArgs, remaining_accounts: &[AccountMeta], ) -> Instruction
Auto Trait Implementations§
impl Freeze for TakeBidCore
impl RefUnwindSafe for TakeBidCore
impl Send for TakeBidCore
impl Sync for TakeBidCore
impl Unpin for TakeBidCore
impl UnwindSafe for TakeBidCore
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