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