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.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.