pub struct MessageCopyOptions {
pub send_copy: bool,
pub replace_caption: bool,
pub new_caption: Option<FormattedText>,
pub new_show_caption_above_media: bool,
}Expand description
Options to be used when a message content is copied without reference to the original sender. Service messages, messages with messageInvoice, messagePaidMedia, messageGiveaway, or messageGiveawayWinners content can’t be copied
Fields§
§send_copy: boolTrue, if content of the message needs to be copied without reference to the original sender. Always true if the message is forwarded to a secret chat or is local. Use messageProperties.can_be_copied and messageProperties.can_be_copied_to_secret_chat to check whether the message is suitable
replace_caption: boolTrue, if media caption of the message copy needs to be replaced. Ignored if send_copy is false
new_caption: Option<FormattedText>New message caption; pass null to copy message without caption. Ignored if replace_caption is false
new_show_caption_above_media: boolTrue, if new caption must be shown above the media; otherwise, new caption must be shown below the media; not supported in secret chats. Ignored if replace_caption is false
Trait Implementations§
Source§impl Clone for MessageCopyOptions
impl Clone for MessageCopyOptions
Source§fn clone(&self) -> MessageCopyOptions
fn clone(&self) -> MessageCopyOptions
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more