pub struct StarGiftActiveAuctionState {
pub gift: StarGift,
pub state: StarGiftAuctionState,
pub user_state: StarGiftAuctionUserState,
}Expand description
Generated from:
starGiftActiveAuctionState#d31bc45d gift:StarGift state:StarGiftAuctionState user_state:StarGiftAuctionUserState = StarGiftActiveAuctionStateFields§
§gift: StarGift§state: StarGiftAuctionState§user_state: StarGiftAuctionUserStateTrait Implementations§
Source§impl Clone for StarGiftActiveAuctionState
impl Clone for StarGiftActiveAuctionState
Source§fn clone(&self) -> StarGiftActiveAuctionState
fn clone(&self) -> StarGiftActiveAuctionState
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 Debug for StarGiftActiveAuctionState
impl Debug for StarGiftActiveAuctionState
Source§impl Deserializable for StarGiftActiveAuctionState
impl Deserializable for StarGiftActiveAuctionState
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<StarGiftActiveAuctionState> for StarGiftActiveAuctionState
impl From<StarGiftActiveAuctionState> for StarGiftActiveAuctionState
Source§fn from(x: StarGiftActiveAuctionState) -> Self
fn from(x: StarGiftActiveAuctionState) -> Self
Converts to this type from the input type.
Source§impl Identifiable for StarGiftActiveAuctionState
impl Identifiable for StarGiftActiveAuctionState
Source§const CONSTRUCTOR_ID: u32 = 0xd31bc45d
const CONSTRUCTOR_ID: u32 = 0xd31bc45d
The constructor ID as specified in the TL schema.
Source§impl TryFrom<StarGiftActiveAuctionState> for StarGiftActiveAuctionState
impl TryFrom<StarGiftActiveAuctionState> for StarGiftActiveAuctionState
Source§type Error = StarGiftActiveAuctionState
type Error = StarGiftActiveAuctionState
The type returned in the event of a conversion error.
impl StructuralPartialEq for StarGiftActiveAuctionState
Auto Trait Implementations§
impl Freeze for StarGiftActiveAuctionState
impl RefUnwindSafe for StarGiftActiveAuctionState
impl Send for StarGiftActiveAuctionState
impl Sync for StarGiftActiveAuctionState
impl Unpin for StarGiftActiveAuctionState
impl UnsafeUnpin for StarGiftActiveAuctionState
impl UnwindSafe for StarGiftActiveAuctionState
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