pub struct CommonRedeemReturn {
pub redemption_bump_seed: u8,
pub auction_manager: Box<dyn AuctionManager>,
pub cancelled: bool,
pub rent: Rent,
pub win_index: Option<usize>,
pub token_metadata_program: Pubkey,
}Fields§
§redemption_bump_seed: u8§auction_manager: Box<dyn AuctionManager>§cancelled: bool§rent: Rent§win_index: Option<usize>§token_metadata_program: PubkeyAuto Trait Implementations§
impl Freeze for CommonRedeemReturn
impl !RefUnwindSafe for CommonRedeemReturn
impl !Send for CommonRedeemReturn
impl !Sync for CommonRedeemReturn
impl Unpin for CommonRedeemReturn
impl !UnwindSafe for CommonRedeemReturn
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