pub enum InputStarGiftAuction {
InputStarGiftAuction(InputStarGiftAuction),
Slug(InputStarGiftAuctionSlug),
}Expand description
Variants§
InputStarGiftAuction(InputStarGiftAuction)
Slug(InputStarGiftAuctionSlug)
Trait Implementations§
Source§impl Clone for InputStarGiftAuction
impl Clone for InputStarGiftAuction
Source§fn clone(&self) -> InputStarGiftAuction
fn clone(&self) -> InputStarGiftAuction
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 InputStarGiftAuction
impl Debug for InputStarGiftAuction
Source§impl Deserializable for InputStarGiftAuction
impl Deserializable for InputStarGiftAuction
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<InputStarGiftAuction> for InputStarGiftAuction
impl From<InputStarGiftAuction> for InputStarGiftAuction
Source§fn from(x: InputStarGiftAuction) -> Self
fn from(x: InputStarGiftAuction) -> Self
Converts to this type from the input type.
Source§impl From<InputStarGiftAuctionSlug> for InputStarGiftAuction
impl From<InputStarGiftAuctionSlug> for InputStarGiftAuction
Source§fn from(x: InputStarGiftAuctionSlug) -> Self
fn from(x: InputStarGiftAuctionSlug) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InputStarGiftAuction
impl PartialEq for InputStarGiftAuction
Source§impl Serializable for InputStarGiftAuction
impl Serializable for InputStarGiftAuction
Source§impl TryFrom<InputStarGiftAuction> for InputStarGiftAuction
impl TryFrom<InputStarGiftAuction> for InputStarGiftAuction
Source§type Error = InputStarGiftAuction
type Error = InputStarGiftAuction
The type returned in the event of a conversion error.
Source§impl TryFrom<InputStarGiftAuction> for InputStarGiftAuctionSlug
impl TryFrom<InputStarGiftAuction> for InputStarGiftAuctionSlug
Source§type Error = InputStarGiftAuction
type Error = InputStarGiftAuction
The type returned in the event of a conversion error.
impl StructuralPartialEq for InputStarGiftAuction
Auto Trait Implementations§
impl Freeze for InputStarGiftAuction
impl RefUnwindSafe for InputStarGiftAuction
impl Send for InputStarGiftAuction
impl Sync for InputStarGiftAuction
impl Unpin for InputStarGiftAuction
impl UnsafeUnpin for InputStarGiftAuction
impl UnwindSafe for InputStarGiftAuction
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