pub struct StarTransactionTypeGiftTransfer {
pub owner_id: MessageSender,
pub gift: UpgradedGift,
}Expand description
The transaction is a transfer of an upgraded gift; relevant for regular users only
Fields§
§owner_id: MessageSenderIdentifier of the user or the channel that received the gift
gift: UpgradedGiftThe gift
Trait Implementations§
Source§impl Clone for StarTransactionTypeGiftTransfer
impl Clone for StarTransactionTypeGiftTransfer
Source§fn clone(&self) -> StarTransactionTypeGiftTransfer
fn clone(&self) -> StarTransactionTypeGiftTransfer
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 StarTransactionTypeGiftTransfer
impl<'de> Deserialize<'de> for StarTransactionTypeGiftTransfer
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 StarTransactionTypeGiftTransfer
impl PartialEq for StarTransactionTypeGiftTransfer
Source§fn eq(&self, other: &StarTransactionTypeGiftTransfer) -> bool
fn eq(&self, other: &StarTransactionTypeGiftTransfer) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StarTransactionTypeGiftTransfer
Auto Trait Implementations§
impl Freeze for StarTransactionTypeGiftTransfer
impl RefUnwindSafe for StarTransactionTypeGiftTransfer
impl Send for StarTransactionTypeGiftTransfer
impl Sync for StarTransactionTypeGiftTransfer
impl Unpin for StarTransactionTypeGiftTransfer
impl UnsafeUnpin for StarTransactionTypeGiftTransfer
impl UnwindSafe for StarTransactionTypeGiftTransfer
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