pub struct GroupInfo {Show 20 fields
pub group_id: i64,
pub local_display_name: String,
pub group_profile: GroupProfile,
pub local_alias: String,
pub business_chat: Option<BusinessChatInfo>,
pub full_group_preferences: FullGroupPreferences,
pub membership: GroupMember,
pub chat_settings: ChatSettings,
pub created_at: UtcTime,
pub updated_at: UtcTime,
pub chat_ts: Option<UtcTime>,
pub user_member_profile_sent_at: Option<UtcTime>,
pub prepared_group: Option<PreparedGroup>,
pub chat_tags: Vec<i64>,
pub chat_item_ttl: Option<i64>,
pub ui_themes: Option<UIThemeEntityOverrides>,
pub custom_data: Option<JsonObject>,
pub members_require_attention: i32,
pub via_group_link_uri: Option<String>,
pub undocumented: BTreeMap<String, JsonObject>,
}Fields§
§group_id: i64§local_display_name: String§group_profile: GroupProfile§local_alias: String§business_chat: Option<BusinessChatInfo>§full_group_preferences: FullGroupPreferences§membership: GroupMember§chat_settings: ChatSettings§created_at: UtcTime§updated_at: UtcTime§chat_ts: Option<UtcTime>§user_member_profile_sent_at: Option<UtcTime>§prepared_group: Option<PreparedGroup>§chat_item_ttl: Option<i64>§ui_themes: Option<UIThemeEntityOverrides>§custom_data: Option<JsonObject>§members_require_attention: i32§via_group_link_uri: Option<String>§undocumented: BTreeMap<String, JsonObject>Trait Implementations§
Source§impl<'de> Deserialize<'de> for GroupInfo
impl<'de> Deserialize<'de> for GroupInfo
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
impl StructuralPartialEq for GroupInfo
Auto Trait Implementations§
impl Freeze for GroupInfo
impl RefUnwindSafe for GroupInfo
impl Send for GroupInfo
impl Sync for GroupInfo
impl Unpin for GroupInfo
impl UnwindSafe for GroupInfo
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