pub struct TGSendContact {
pub chat_id: i64,
pub phone_number: String,
pub first_name: String,
pub last_name: Option<String>,
pub vcard: Option<String>,
pub disable_notification: Option<bool>,
pub reply_to_message_id: Option<i64>,
pub reply_markup: Option<String>,
pub message_thread_id: Option<i64>,
pub protect_content: Option<bool>,
}Fields§
§chat_id: i64§phone_number: String§first_name: String§last_name: Option<String>§vcard: Option<String>§disable_notification: Option<bool>§reply_to_message_id: Option<i64>§reply_markup: Option<String>§message_thread_id: Option<i64>§protect_content: Option<bool>Trait Implementations§
Source§impl Clone for TGSendContact
impl Clone for TGSendContact
Source§fn clone(&self) -> TGSendContact
fn clone(&self) -> TGSendContact
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 TGSendContact
impl Debug for TGSendContact
Source§impl Default for TGSendContact
impl Default for TGSendContact
Source§fn default() -> TGSendContact
fn default() -> TGSendContact
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TGSendContact
impl<'de> Deserialize<'de> for TGSendContact
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 TGSendContact
impl RefUnwindSafe for TGSendContact
impl Send for TGSendContact
impl Sync for TGSendContact
impl Unpin for TGSendContact
impl UnwindSafe for TGSendContact
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