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