[][src]Struct carapax::prelude::methods::ForwardMessage

pub struct ForwardMessage { /* fields omitted */ }

Forward message of any kind

Methods

impl ForwardMessage[src]

pub fn new<C>(chat_id: C, from_chat_id: C, message_id: i64) -> ForwardMessage where
    C: Into<ChatId>, 
[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) -> ForwardMessage[src]

Sends the message silently

Users will receive a notification with no sound

Trait Implementations

impl Serialize for ForwardMessage[src]

impl Debug for ForwardMessage[src]

impl Method for ForwardMessage[src]

type Response = Message

Type of successful result in API response

impl Clone for ForwardMessage[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T