pub trait StopMessageLiveLocationInlineSetters: HasPayload<Payload = StopMessageLiveLocationInline> + Sized {
// Provided methods
fn inline_message_id<T>(self, value: T) -> Self
where T: Into<String> { ... }
fn latitude(self, value: f64) -> Self { ... }
fn longitude(self, value: f64) -> Self { ... }
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) -> Selfwhere
T: Into<String>,
fn inline_message_id<T>(self, value: T) -> Selfwhere T: Into<String>,
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.