pub struct RemoveChatParticipantRequest {
pub chat_id: InlineId,
pub user_id: InlineId,
}Expand description
Request to remove a user from an Inline chat.
Fields§
§chat_id: InlineIdInline chat ID.
user_id: InlineIdInline user ID to remove.
Trait Implementations§
Source§impl Clone for RemoveChatParticipantRequest
impl Clone for RemoveChatParticipantRequest
Source§fn clone(&self) -> RemoveChatParticipantRequest
fn clone(&self) -> RemoveChatParticipantRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RemoveChatParticipantRequest
impl Debug for RemoveChatParticipantRequest
Source§impl<'de> Deserialize<'de> for RemoveChatParticipantRequest
impl<'de> Deserialize<'de> for RemoveChatParticipantRequest
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 Eq for RemoveChatParticipantRequest
impl StructuralPartialEq for RemoveChatParticipantRequest
Auto Trait Implementations§
impl Freeze for RemoveChatParticipantRequest
impl RefUnwindSafe for RemoveChatParticipantRequest
impl Send for RemoveChatParticipantRequest
impl Sync for RemoveChatParticipantRequest
impl Unpin for RemoveChatParticipantRequest
impl UnsafeUnpin for RemoveChatParticipantRequest
impl UnwindSafe for RemoveChatParticipantRequest
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