[][src]Struct tgbot::methods::ForwardMessage

pub struct ForwardMessage { /* fields omitted */ }

Forward message of any kind

Methods

impl ForwardMessage[src]

pub fn new<C: Into<ChatId>>(
    chat_id: C,
    from_chat_id: C,
    message_id: Integer
) -> Self
[src]

Creates a new ForwardMessage with empty optional parameters

Arguments

  • chat_id - Unique identifier for the target chat
  • from_chat_id - Unique identifier for the chat where the original message was sent
  • message_id - Message identifier in the chat specified in from_chat_id

pub fn disable_notification(self, disable_notification: bool) -> Self[src]

Sends the message silently

Users will receive a notification with no sound

Trait Implementations

impl Clone for ForwardMessage[src]

impl Debug for ForwardMessage[src]

impl Method for ForwardMessage[src]

type Response = Message

Type of successful result in API response

impl Serialize for ForwardMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.