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