Struct teloxide_core::payloads::GetCustomEmojiStickers
source · pub struct GetCustomEmojiStickers {
pub custom_emoji_ids: Vec<String>,
}
Expand description
Use this method to get information about custom emoji stickers by their identifiers. Returns an Array of Sticker objects.
Fields§
§custom_emoji_ids: Vec<String>
List of custom emoji identifiers. At most 200 custom emoji identifiers can be specified.
Implementations§
source§impl GetCustomEmojiStickers
impl GetCustomEmojiStickers
pub fn new(custom_emoji_ids: impl IntoIterator<Item = String>) -> Self
Trait Implementations§
source§impl Clone for GetCustomEmojiStickers
impl Clone for GetCustomEmojiStickers
source§impl Debug for GetCustomEmojiStickers
impl Debug for GetCustomEmojiStickers
source§impl Hash for GetCustomEmojiStickers
impl Hash for GetCustomEmojiStickers
source§impl PartialEq<GetCustomEmojiStickers> for GetCustomEmojiStickers
impl PartialEq<GetCustomEmojiStickers> for GetCustomEmojiStickers
source§fn eq(&self, other: &GetCustomEmojiStickers) -> bool
fn eq(&self, other: &GetCustomEmojiStickers) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Payload for GetCustomEmojiStickers
impl Payload for GetCustomEmojiStickers
source§fn timeout_hint(&self) -> Option<Duration>
fn timeout_hint(&self) -> Option<Duration>
If this payload may take long time to execute (e.g.
GetUpdates
with
big timeout
), the minimum timeout that should be used.source§impl Serialize for GetCustomEmojiStickers
impl Serialize for GetCustomEmojiStickers
impl Eq for GetCustomEmojiStickers
impl StructuralEq for GetCustomEmojiStickers
impl StructuralPartialEq for GetCustomEmojiStickers
Auto Trait Implementations§
impl RefUnwindSafe for GetCustomEmojiStickers
impl Send for GetCustomEmojiStickers
impl Sync for GetCustomEmojiStickers
impl Unpin for GetCustomEmojiStickers
impl UnwindSafe for GetCustomEmojiStickers
Blanket Implementations§
source§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,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.