pub struct UpdateChatPendingJoinRequests {
pub chat_id: i64,
pub pending_join_requests: Option<ChatJoinRequestsInfo>,
}
Expand description
The chat pending join requests were changed
Fields§
§chat_id: i64
Chat identifier
pending_join_requests: Option<ChatJoinRequestsInfo>
The new data about pending join requests; may be null
Trait Implementations§
Source§impl Clone for UpdateChatPendingJoinRequests
impl Clone for UpdateChatPendingJoinRequests
Source§fn clone(&self) -> UpdateChatPendingJoinRequests
fn clone(&self) -> UpdateChatPendingJoinRequests
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 UpdateChatPendingJoinRequests
impl Default for UpdateChatPendingJoinRequests
Source§fn default() -> UpdateChatPendingJoinRequests
fn default() -> UpdateChatPendingJoinRequests
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateChatPendingJoinRequests
impl<'de> Deserialize<'de> for UpdateChatPendingJoinRequests
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 UpdateChatPendingJoinRequests
impl PartialEq for UpdateChatPendingJoinRequests
Source§fn eq(&self, other: &UpdateChatPendingJoinRequests) -> bool
fn eq(&self, other: &UpdateChatPendingJoinRequests) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateChatPendingJoinRequests
Auto Trait Implementations§
impl Freeze for UpdateChatPendingJoinRequests
impl RefUnwindSafe for UpdateChatPendingJoinRequests
impl Send for UpdateChatPendingJoinRequests
impl Sync for UpdateChatPendingJoinRequests
impl Unpin for UpdateChatPendingJoinRequests
impl UnwindSafe for UpdateChatPendingJoinRequests
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