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