pub trait StopMessageLiveLocationSetters: HasPayload<Payload = StopMessageLiveLocation> + Sized {
    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§

Setter for chat_id field.

Setter for message_id field.

Setter for latitude field.

Setter for longitude field.

Setter for reply_markup field.

Implementors§