pub struct ClientIdList {
pub total: i32,
pub client_ids: Vec<String>,
pub clipped: Option<bool>,
}Expand description
ClientIdList : Aggregated set of client IDs for a unique/distinct reaction.
Fields§
§total: i32Total number of clients that applied this reaction.
client_ids: Vec<String>The client IDs that applied this reaction.
clipped: Option<bool>Whether the clientIds list was truncated because there were too many reacting clients.
Implementations§
Source§impl ClientIdList
impl ClientIdList
Trait Implementations§
Source§impl Clone for ClientIdList
impl Clone for ClientIdList
Source§fn clone(&self) -> ClientIdList
fn clone(&self) -> ClientIdList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ClientIdList
impl Debug for ClientIdList
Source§impl Default for ClientIdList
impl Default for ClientIdList
Source§fn default() -> ClientIdList
fn default() -> ClientIdList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClientIdList
impl<'de> Deserialize<'de> for ClientIdList
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 for ClientIdList
impl PartialEq for ClientIdList
Source§impl Serialize for ClientIdList
impl Serialize for ClientIdList
impl StructuralPartialEq for ClientIdList
Auto Trait Implementations§
impl Freeze for ClientIdList
impl RefUnwindSafe for ClientIdList
impl Send for ClientIdList
impl Sync for ClientIdList
impl Unpin for ClientIdList
impl UnsafeUnpin for ClientIdList
impl UnwindSafe for ClientIdList
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