pub enum Stickers {
NotModified,
Stickers(Stickers),
}Expand description
Variants§
Trait Implementations§
Source§impl Deserializable for Stickers
impl Deserializable for Stickers
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<StickersNotModified> for Stickers
impl From<StickersNotModified> for Stickers
Source§fn from(_x: StickersNotModified) -> Self
fn from(_x: StickersNotModified) -> Self
Converts to this type from the input type.
Source§impl Serializable for Stickers
impl Serializable for Stickers
impl StructuralPartialEq for Stickers
Auto Trait Implementations§
impl Freeze for Stickers
impl RefUnwindSafe for Stickers
impl Send for Stickers
impl Sync for Stickers
impl Unpin for Stickers
impl UnsafeUnpin for Stickers
impl UnwindSafe for Stickers
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