[−][src]Struct tbot::methods::SendMessage
Sends a text message.
Reflects the sendMessage method.
Methods
impl<'a, C> SendMessage<'a, C>[src]
pub fn web_page_preview(self, state: WebPagePreviewState) -> Self[src]
Configures if a preview for the first link in the message should be
shown. Reflects the disable_web_page_preview parameter.
pub fn notification(self, state: NotificationState) -> Self[src]
Configures if the message will be sent silently.
Reflects the disable_notification parameter.
pub fn reply_to_message_id(self, id: Id) -> Self[src]
Configures which message this text message is sent in reply to.
Reflects the reply_to_message_id parameter.
pub fn reply_markup(self, markup: impl Into<Any<'a>>) -> Self[src]
Configures a keyboard for the message.
Reflects the reply_markup parameter.
impl<'_, C: Connector> SendMessage<'_, C>[src]
pub async fn call(self) -> Result<Message, MethodCall>[src]
Calls the method.
Trait Implementations
impl<'a, C: Clone> Clone for SendMessage<'a, C>[src]
fn clone(&self) -> SendMessage<'a, C>[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<'a, C: Debug> Debug for SendMessage<'a, C>[src]
impl<'a, C> Serialize for SendMessage<'a, C>[src]
Auto Trait Implementations
impl<'a, C> !RefUnwindSafe for SendMessage<'a, C>
impl<'a, C> Send for SendMessage<'a, C> where
C: Sync,
C: Sync,
impl<'a, C> Sync for SendMessage<'a, C> where
C: Sync,
C: Sync,
impl<'a, C> Unpin for SendMessage<'a, C>
impl<'a, C> !UnwindSafe for SendMessage<'a, C>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,