pub struct GetSocialQqGroupinfo200Response {
pub group_id: Option<String>,
pub group_name: Option<String>,
pub avatar_url: Option<String>,
pub description: Option<String>,
pub tag: Option<String>,
pub join_url: Option<String>,
pub last_updated: Option<String>,
}Fields§
§group_id: Option<String>群号
group_name: Option<String>群名称
avatar_url: Option<String>群头像URL(标准尺寸100x100)
description: Option<String>群描述/简介
tag: Option<String>群标签
join_url: Option<String>加群链接(QR码URL)
last_updated: Option<String>最后更新时间(ISO 8601格式)
Implementations§
Trait Implementations§
Source§impl Clone for GetSocialQqGroupinfo200Response
impl Clone for GetSocialQqGroupinfo200Response
Source§fn clone(&self) -> GetSocialQqGroupinfo200Response
fn clone(&self) -> GetSocialQqGroupinfo200Response
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 Default for GetSocialQqGroupinfo200Response
impl Default for GetSocialQqGroupinfo200Response
Source§fn default() -> GetSocialQqGroupinfo200Response
fn default() -> GetSocialQqGroupinfo200Response
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetSocialQqGroupinfo200Response
impl<'de> Deserialize<'de> for GetSocialQqGroupinfo200Response
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 GetSocialQqGroupinfo200Response
impl PartialEq for GetSocialQqGroupinfo200Response
Source§fn eq(&self, other: &GetSocialQqGroupinfo200Response) -> bool
fn eq(&self, other: &GetSocialQqGroupinfo200Response) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetSocialQqGroupinfo200Response
Auto Trait Implementations§
impl Freeze for GetSocialQqGroupinfo200Response
impl RefUnwindSafe for GetSocialQqGroupinfo200Response
impl Send for GetSocialQqGroupinfo200Response
impl Sync for GetSocialQqGroupinfo200Response
impl Unpin for GetSocialQqGroupinfo200Response
impl UnwindSafe for GetSocialQqGroupinfo200Response
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