pub struct EditMessageReplyMarkupInline {
pub inline_message_id: String,
pub reply_markup: Option<InlineKeyboardMarkup>,
}Expand description
Use this method to edit only the reply markup of messages. On success, True is returned.
See also: EditMessageReplyMarkup
Fields
inline_message_id: StringIdentifier of the inline message
reply_markup: Option<InlineKeyboardMarkup>A JSON-serialized object for an inline keyboard.
Implementations
Trait Implementations
sourceimpl Clone for EditMessageReplyMarkupInline
impl Clone for EditMessageReplyMarkupInline
sourcefn clone(&self) -> EditMessageReplyMarkupInlineⓘNotable traits for EditMessageReplyMarkupInlineimpl Payload for EditMessageReplyMarkupInline type Output = True;
fn clone(&self) -> EditMessageReplyMarkupInlineⓘNotable traits for EditMessageReplyMarkupInlineimpl Payload for EditMessageReplyMarkupInline type Output = True;
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 moresourceimpl Debug for EditMessageReplyMarkupInline
impl Debug for EditMessageReplyMarkupInline
sourceimpl Hash for EditMessageReplyMarkupInline
impl Hash for EditMessageReplyMarkupInline
sourceimpl PartialEq<EditMessageReplyMarkupInline> for EditMessageReplyMarkupInline
impl PartialEq<EditMessageReplyMarkupInline> for EditMessageReplyMarkupInline
sourcefn eq(&self, other: &EditMessageReplyMarkupInline) -> bool
fn eq(&self, other: &EditMessageReplyMarkupInline) -> bool
sourceimpl Payload for EditMessageReplyMarkupInline
impl Payload for EditMessageReplyMarkupInline
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 moreimpl Eq for EditMessageReplyMarkupInline
impl StructuralEq for EditMessageReplyMarkupInline
impl StructuralPartialEq for EditMessageReplyMarkupInline
Auto Trait Implementations
impl RefUnwindSafe for EditMessageReplyMarkupInline
impl Send for EditMessageReplyMarkupInline
impl Sync for EditMessageReplyMarkupInline
impl Unpin for EditMessageReplyMarkupInline
impl UnwindSafe for EditMessageReplyMarkupInline
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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 Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
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.