pub struct GetStickers {
pub emoji: String,
pub limit: i32,
}
Expand description
Returns stickers from the installed sticker sets that correspond to a given emoji. If the emoji is not empty, favorite and recently used stickers may also be returned
Fields§
§emoji: String
String representation of emoji. If empty, returns all known installed stickers
limit: i32
Maximum number of stickers to be returned
Trait Implementations§
Source§impl Clone for GetStickers
impl Clone for GetStickers
Source§fn clone(&self) -> GetStickers
fn clone(&self) -> GetStickers
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 GetStickers
impl Debug for GetStickers
Source§impl<'de> Deserialize<'de> for GetStickers
impl<'de> Deserialize<'de> for GetStickers
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Method for GetStickers
impl Method for GetStickers
Auto Trait Implementations§
impl Freeze for GetStickers
impl RefUnwindSafe for GetStickers
impl Send for GetStickers
impl Sync for GetStickers
impl Unpin for GetStickers
impl UnwindSafe for GetStickers
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