pub struct StarTransactionTypeGiftAuctionBid {
pub owner_id: MessageSender,
pub gift: Gift,
}Expand description
The transaction is a bid on a gift auction; relevant for regular users only
Fields§
§owner_id: MessageSenderIdentifier of the user who will receive the gift
gift: GiftThe gift
Trait Implementations§
Source§impl Clone for StarTransactionTypeGiftAuctionBid
impl Clone for StarTransactionTypeGiftAuctionBid
Source§fn clone(&self) -> StarTransactionTypeGiftAuctionBid
fn clone(&self) -> StarTransactionTypeGiftAuctionBid
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for StarTransactionTypeGiftAuctionBid
impl<'de> Deserialize<'de> for StarTransactionTypeGiftAuctionBid
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for StarTransactionTypeGiftAuctionBid
impl PartialEq for StarTransactionTypeGiftAuctionBid
Source§fn eq(&self, other: &StarTransactionTypeGiftAuctionBid) -> bool
fn eq(&self, other: &StarTransactionTypeGiftAuctionBid) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StarTransactionTypeGiftAuctionBid
Auto Trait Implementations§
impl Freeze for StarTransactionTypeGiftAuctionBid
impl RefUnwindSafe for StarTransactionTypeGiftAuctionBid
impl Send for StarTransactionTypeGiftAuctionBid
impl Sync for StarTransactionTypeGiftAuctionBid
impl Unpin for StarTransactionTypeGiftAuctionBid
impl UnsafeUnpin for StarTransactionTypeGiftAuctionBid
impl UnwindSafe for StarTransactionTypeGiftAuctionBid
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