pub struct GetGroupNotificationResponse {
pub notifications: Vec<GroupNotification>,
pub next_notification_seq: Option<i64>,
}Expand description
获取群组通知的响应数据。
Fields§
§notifications: Vec<GroupNotification>通知列表
next_notification_seq: Option<i64>下一页起始通知序列号
Trait Implementations§
Source§impl Debug for GetGroupNotificationResponse
impl Debug for GetGroupNotificationResponse
Source§impl<'de> Deserialize<'de> for GetGroupNotificationResponse
impl<'de> Deserialize<'de> for GetGroupNotificationResponse
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 GetGroupNotificationResponse
impl RefUnwindSafe for GetGroupNotificationResponse
impl Send for GetGroupNotificationResponse
impl Sync for GetGroupNotificationResponse
impl Unpin for GetGroupNotificationResponse
impl UnsafeUnpin for GetGroupNotificationResponse
impl UnwindSafe for GetGroupNotificationResponse
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