pub struct TGEditChatInviteLink {
pub chat_id: i64,
pub invite_link: String,
pub expire_date: Option<i64>,
pub member_limit: Option<i64>,
pub name: Option<String>,
pub creates_join_request: Option<bool>,
}Fields§
§chat_id: i64§invite_link: String§expire_date: Option<i64>§member_limit: Option<i64>§name: Option<String>§creates_join_request: Option<bool>Trait Implementations§
Source§impl Clone for TGEditChatInviteLink
impl Clone for TGEditChatInviteLink
Source§fn clone(&self) -> TGEditChatInviteLink
fn clone(&self) -> TGEditChatInviteLink
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 Debug for TGEditChatInviteLink
impl Debug for TGEditChatInviteLink
Source§impl Default for TGEditChatInviteLink
impl Default for TGEditChatInviteLink
Source§fn default() -> TGEditChatInviteLink
fn default() -> TGEditChatInviteLink
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TGEditChatInviteLink
impl<'de> Deserialize<'de> for TGEditChatInviteLink
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 TGEditChatInviteLink
impl RefUnwindSafe for TGEditChatInviteLink
impl Send for TGEditChatInviteLink
impl Sync for TGEditChatInviteLink
impl Unpin for TGEditChatInviteLink
impl UnwindSafe for TGEditChatInviteLink
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