pub struct ClientIdList {
pub total: u64,
pub client_ids: Vec<String>,
pub clipped: bool,
}Expand description
Aggregated set of client IDs for a unique/distinct reaction.
Fields§
§total: u64Total number of clients that applied this reaction.
client_ids: Vec<String>The client IDs that applied this reaction.
clipped: boolWhether the client_ids list was truncated.
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<'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
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