pub struct CommonRedeemFinishArgs<'a> {Show 16 fields
pub program_id: &'a Pubkey,
pub auction_manager: Box<dyn AuctionManager>,
pub auction_manager_info: &'a AccountInfo<'a>,
pub bidder_metadata_info: &'a AccountInfo<'a>,
pub rent_info: &'a AccountInfo<'a>,
pub system_info: &'a AccountInfo<'a>,
pub payer_info: &'a AccountInfo<'a>,
pub bid_redemption_info: &'a AccountInfo<'a>,
pub vault_info: &'a AccountInfo<'a>,
pub safety_deposit_config_info: Option<&'a AccountInfo<'a>>,
pub winning_index: Option<usize>,
pub redemption_bump_seed: u8,
pub bid_redeemed: bool,
pub participation_redeemed: bool,
pub winning_item_index: Option<usize>,
pub overwrite_win_index: Option<usize>,
}Fields§
§program_id: &'a Pubkey§auction_manager: Box<dyn AuctionManager>§auction_manager_info: &'a AccountInfo<'a>§bidder_metadata_info: &'a AccountInfo<'a>§rent_info: &'a AccountInfo<'a>§system_info: &'a AccountInfo<'a>§payer_info: &'a AccountInfo<'a>§bid_redemption_info: &'a AccountInfo<'a>§vault_info: &'a AccountInfo<'a>§safety_deposit_config_info: Option<&'a AccountInfo<'a>>§winning_index: Option<usize>§redemption_bump_seed: u8§bid_redeemed: bool§participation_redeemed: bool§winning_item_index: Option<usize>§overwrite_win_index: Option<usize>Auto Trait Implementations§
impl<'a> Freeze for CommonRedeemFinishArgs<'a>
impl<'a> !RefUnwindSafe for CommonRedeemFinishArgs<'a>
impl<'a> !Send for CommonRedeemFinishArgs<'a>
impl<'a> !Sync for CommonRedeemFinishArgs<'a>
impl<'a> Unpin for CommonRedeemFinishArgs<'a>
impl<'a> !UnwindSafe for CommonRedeemFinishArgs<'a>
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