Struct teloxide_core::payloads::EditMessageText
source · [−]pub struct EditMessageText {
pub chat_id: Recipient,
pub message_id: i32,
pub text: String,
pub parse_mode: Option<ParseMode>,
pub entities: Option<Vec<MessageEntity>>,
pub disable_web_page_preview: Option<bool>,
pub reply_markup: Option<InlineKeyboardMarkup>,
}Expand description
Use this method to edit text and games messages. On success, the edited Message is returned.
See also: EditMessageTextInline
Fields
chat_id: RecipientUnique identifier for the target chat or username of the target channel (in the format @channelusername).
message_id: i32Identifier of the message to edit
text: StringNew text of the message, 1-4096 characters after entities parsing
parse_mode: Option<ParseMode>Mode for parsing entities in the message text. See formatting options for more details.
entities: Option<Vec<MessageEntity>>List of special entities that appear in message text, which can be specified instead of parse_mode
disable_web_page_preview: Option<bool>Disables link previews for links in this message
reply_markup: Option<InlineKeyboardMarkup>A JSON-serialized object for an inline keyboard.
Implementations
Trait Implementations
sourceimpl Clone for EditMessageText
impl Clone for EditMessageText
sourcefn clone(&self) -> EditMessageTextⓘNotable traits for EditMessageTextimpl Payload for EditMessageText type Output = Message;
fn clone(&self) -> EditMessageTextⓘNotable traits for EditMessageTextimpl Payload for EditMessageText type Output = Message;
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for EditMessageText
impl Debug for EditMessageText
sourceimpl Hash for EditMessageText
impl Hash for EditMessageText
sourceimpl PartialEq<EditMessageText> for EditMessageText
impl PartialEq<EditMessageText> for EditMessageText
sourcefn eq(&self, other: &EditMessageText) -> bool
fn eq(&self, other: &EditMessageText) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &EditMessageText) -> bool
fn ne(&self, other: &EditMessageText) -> bool
This method tests for !=.
sourceimpl Payload for EditMessageText
impl Payload for EditMessageText
sourcefn timeout_hint(&self) -> Option<Duration>
fn timeout_hint(&self) -> Option<Duration>
If this payload may take long time to execute (e.g. GetUpdates with
big timeout), the minimum timeout that should be used. Read more
sourceimpl Serialize for EditMessageText
impl Serialize for EditMessageText
impl Eq for EditMessageText
impl StructuralEq for EditMessageText
impl StructuralPartialEq for EditMessageText
Auto Trait Implementations
impl RefUnwindSafe for EditMessageText
impl Send for EditMessageText
impl Sync for EditMessageText
impl Unpin for EditMessageText
impl UnwindSafe for EditMessageText
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key and return true if they are equal.
impl<T> Erasable for T
impl<T> Erasable for T
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
