pub struct DynamicReactionData {
pub has_more: bool,
pub items: Vec<DynamicReactionItem>,
pub offset: String,
pub total: u64,
}
Expand description
动态点赞与转发列表响应数据
Fields§
§has_more: bool
§items: Vec<DynamicReactionItem>
§offset: String
§total: u64
Trait Implementations§
Source§impl Clone for DynamicReactionData
impl Clone for DynamicReactionData
Source§fn clone(&self) -> DynamicReactionData
fn clone(&self) -> DynamicReactionData
Returns a duplicate 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 DynamicReactionData
impl Debug for DynamicReactionData
Source§impl<'de> Deserialize<'de> for DynamicReactionData
impl<'de> Deserialize<'de> for DynamicReactionData
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 DynamicReactionData
impl RefUnwindSafe for DynamicReactionData
impl Send for DynamicReactionData
impl Sync for DynamicReactionData
impl Unpin for DynamicReactionData
impl UnwindSafe for DynamicReactionData
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