pub struct GetEmotesPayload {
pub emote_type: EmoteFetchType,
pub channel_id: Vec<String>,
}Expand description
Payload for the get emotes api call
Fields§
§emote_type: EmoteFetchTypeGet the kind of emotes you want
channel_id: Vec<String>A list of valid channel IDs you want to request for
Trait Implementations§
Source§impl Debug for GetEmotesPayload
impl Debug for GetEmotesPayload
Source§impl<'de> Deserialize<'de> for GetEmotesPayload
impl<'de> Deserialize<'de> for GetEmotesPayload
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
Auto Trait Implementations§
impl Freeze for GetEmotesPayload
impl RefUnwindSafe for GetEmotesPayload
impl Send for GetEmotesPayload
impl Sync for GetEmotesPayload
impl Unpin for GetEmotesPayload
impl UnwindSafe for GetEmotesPayload
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