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§

source

fn chat_id<T>(self, value: T) -> Selfwhere T: Into<Recipient>,

Setter for chat_id field.

source

fn message_id(self, value: MessageId) -> Self

Setter for message_id field.

source

fn latitude(self, value: f64) -> Self

Setter for latitude field.

source

fn longitude(self, value: f64) -> Self

Setter for longitude field.

source

fn reply_markup<T>(self, value: T) -> Selfwhere T: Into<ReplyMarkup>,

Setter for reply_markup field.

Implementors§