pub struct AddChatParticipantRequest {
pub chat_id: InlineId,
pub user_id: InlineId,
}Expand description
Request to add a user to an Inline chat.
Fields§
§chat_id: InlineIdInline chat ID.
user_id: InlineIdInline user ID to add.
Trait Implementations§
Source§impl Clone for AddChatParticipantRequest
impl Clone for AddChatParticipantRequest
Source§fn clone(&self) -> AddChatParticipantRequest
fn clone(&self) -> AddChatParticipantRequest
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 AddChatParticipantRequest
impl Debug for AddChatParticipantRequest
Source§impl<'de> Deserialize<'de> for AddChatParticipantRequest
impl<'de> Deserialize<'de> for AddChatParticipantRequest
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 AddChatParticipantRequest
impl StructuralPartialEq for AddChatParticipantRequest
Auto Trait Implementations§
impl Freeze for AddChatParticipantRequest
impl RefUnwindSafe for AddChatParticipantRequest
impl Send for AddChatParticipantRequest
impl Sync for AddChatParticipantRequest
impl Unpin for AddChatParticipantRequest
impl UnsafeUnpin for AddChatParticipantRequest
impl UnwindSafe for AddChatParticipantRequest
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