pub enum StickerEffect {
Normal,
Outline,
Comic,
Puffy,
Shiny,
Other(String),
}Expand description
Represents different types of sticker effects that can be applied to sticker iMessage balloons.
Variants§
Normal
Sticker sent with no effect
Outline
Internally referred to as stroke
Comic
Puffy
Shiny
Internally referred to as iridescent
Other(String)
Trait Implementations§
source§impl Debug for StickerEffect
impl Debug for StickerEffect
source§impl Default for StickerEffect
impl Default for StickerEffect
source§impl Display for StickerEffect
impl Display for StickerEffect
source§impl PartialEq for StickerEffect
impl PartialEq for StickerEffect
source§fn eq(&self, other: &StickerEffect) -> bool
fn eq(&self, other: &StickerEffect) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for StickerEffect
impl StructuralEq for StickerEffect
impl StructuralPartialEq for StickerEffect
Auto Trait Implementations§
impl RefUnwindSafe for StickerEffect
impl Send for StickerEffect
impl Sync for StickerEffect
impl Unpin for StickerEffect
impl UnwindSafe for StickerEffect
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.