pub struct ForwardMessages { /* private fields */ }Expand description
Forwards multiple messages.
If some of the specified messages can’t be found or forwarded, they are skipped. Service messages and messages with protected content can’t be forwarded. Album grouping is kept for forwarded messages.
Implementations§
Source§impl ForwardMessages
impl ForwardMessages
Sourcepub fn new<A, B, C>(chat_id: A, from_chat_id: B, message_ids: C) -> Self
pub fn new<A, B, C>(chat_id: A, from_chat_id: B, message_ids: C) -> Self
Creates a new ForwardMessages.
§Arguments
chat_id- Unique identifier of the target chat.from_chat_id- Unique identifier for the chat where the original message was sent.message_ids- Identifiers of 1-100 messages in the chatfrom_chat_idto forward; the identifiers must be specified in a strictly increasing order.
Sourcepub fn with_direct_messages_topic_id(self, value: Integer) -> Self
pub fn with_direct_messages_topic_id(self, value: Integer) -> Self
Sets a new direct messages topic ID
value- Identifier of the direct messages topic to which the message will be sent.
Required if the message is sent to a direct messages chat.
Sourcepub fn with_disable_notification(self, value: bool) -> Self
pub fn with_disable_notification(self, value: bool) -> Self
Sets a new value for the disable_notification flag.
§Arguments
value- Indicates whether to send the message silently or not; a user will receive a notification without sound.
Sourcepub fn with_message_thread_id(self, value: Integer) -> Self
pub fn with_message_thread_id(self, value: Integer) -> Self
Sets a new message thread ID.
§Arguments
value- Unique identifier of the target message thread; for forum supergroups and private chats of bots with forum topic mode enabled only.
Sourcepub fn with_protect_content(self, value: bool) -> Self
pub fn with_protect_content(self, value: bool) -> Self
Sets a new value for the protect_content flag.
§Arguments
value- Indicates whether to protect the contents of the sent message from forwarding and saving.
Trait Implementations§
Source§impl Clone for ForwardMessages
impl Clone for ForwardMessages
Source§fn clone(&self) -> ForwardMessages
fn clone(&self) -> ForwardMessages
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ForwardMessages
impl Debug for ForwardMessages
Source§impl Method for ForwardMessages
impl Method for ForwardMessages
Auto Trait Implementations§
impl Freeze for ForwardMessages
impl RefUnwindSafe for ForwardMessages
impl Send for ForwardMessages
impl Sync for ForwardMessages
impl Unpin for ForwardMessages
impl UnsafeUnpin for ForwardMessages
impl UnwindSafe for ForwardMessages
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