pub trait StopMessageLiveLocationSetters: HasPayload<Payload = StopMessageLiveLocation> + Sized {
// Provided methods
fn chat_id<T>(self, value: T) -> Self
where T: Into<Recipient> { ... }
fn message_id(self, value: MessageId) -> Self { ... }
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 StopMessageLiveLocation
Provided Methods§
sourcefn message_id(self, value: MessageId) -> Self
fn message_id(self, value: MessageId) -> Self
Setter for 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.