pub trait StopMessageLiveLocationInlineSetters: HasPayload<Payload = StopMessageLiveLocationInline> + Sized {
// Provided methods
fn inline_message_id<T>(self, value: T) -> Self
where T: Into<String> { ... }
fn reply_markup<T>(self, value: T) -> Self
where T: Into<ReplyMarkup> { ... }
}
Expand description
Setters for fields of StopMessageLiveLocationInline
Provided Methods§
sourcefn inline_message_id<T>(self, value: T) -> Self
fn inline_message_id<T>(self, value: T) -> Self
Setter for inline_message_id
field.
sourcefn reply_markup<T>(self, value: T) -> Selfwhere
T: Into<ReplyMarkup>,
fn reply_markup<T>(self, value: T) -> Selfwhere
T: Into<ReplyMarkup>,
Setter for reply_markup
field.
Object Safety§
This trait is not object safe.