pub trait EditMessageLiveLocationSetters: HasPayload<Payload = EditMessageLiveLocation> + 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 horizontal_accuracy(self, value: f64) -> Self { ... } fn heading(self, value: u16) -> Self { ... } fn proximity_alert_radius(self, value: u32) -> Self { ... } fn reply_markup<T>(self, value: T) -> Self
    where
        T: Into<ReplyMarkup>
, { ... } }
Expand description

Setters for fields of EditMessageLiveLocation

Provided Methods§

Setter for chat_id field.

Setter for message_id field.

Setter for latitude field.

Setter for longitude field.

Setter for horizontal_accuracy field.

Setter for heading field.

Setter for proximity_alert_radius field.

Setter for reply_markup field.

Implementors§