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