Struct telexide_fork::model::InlineCustomEmoji
source · pub struct InlineCustomEmoji {
pub text_block: TextBlock,
pub custom_emoji_id: String,
}Fields§
§text_block: TextBlockThe part of the text that is the custom emoji
custom_emoji_id: StringFor “custom_emoji” only, unique identifier of the custom emoji. Use
get_custom_emoji_stickers to get full information about the sticker
Trait Implementations§
source§impl Clone for InlineCustomEmoji
impl Clone for InlineCustomEmoji
source§fn clone(&self) -> InlineCustomEmoji
fn clone(&self) -> InlineCustomEmoji
Returns a copy 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 InlineCustomEmoji
impl Debug for InlineCustomEmoji
source§impl<'de> Deserialize<'de> for InlineCustomEmoji
impl<'de> Deserialize<'de> for InlineCustomEmoji
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 PartialEq<InlineCustomEmoji> for InlineCustomEmoji
impl PartialEq<InlineCustomEmoji> for InlineCustomEmoji
source§fn eq(&self, other: &InlineCustomEmoji) -> bool
fn eq(&self, other: &InlineCustomEmoji) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for InlineCustomEmoji
impl Serialize for InlineCustomEmoji
impl Eq for InlineCustomEmoji
impl StructuralEq for InlineCustomEmoji
impl StructuralPartialEq for InlineCustomEmoji
Auto Trait Implementations§
impl RefUnwindSafe for InlineCustomEmoji
impl Send for InlineCustomEmoji
impl Sync for InlineCustomEmoji
impl Unpin for InlineCustomEmoji
impl UnwindSafe for InlineCustomEmoji
Blanket Implementations§
source§impl<T> CloneAny for Twhere
T: Any + Clone,
impl<T> CloneAny for Twhere T: Any + Clone,
fn clone_any(&self) -> Box<dyn CloneAny + 'static, Global>
fn clone_any_send(&self) -> Box<dyn CloneAny + Send + 'static, Global>where T: Send,
fn clone_any_sync(&self) -> Box<dyn CloneAny + Sync + 'static, Global>where T: Sync,
fn clone_any_send_sync( &self ) -> Box<dyn CloneAny + Send + Sync + 'static, Global>where T: Send + Sync,
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.