Trait teloxide_core::payloads::StopMessageLiveLocationSetters[][src]

pub trait StopMessageLiveLocationSetters: HasPayload<Payload = StopMessageLiveLocation> + Sized {
    fn chat_id<T>(self, value: T) -> Self
    where
        T: Into<ChatId>
, { ... }
fn message_id(self, value: i32) -> 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>
, { ... } }

Setters for fields of StopMessageLiveLocation

Provided methods

fn chat_id<T>(self, value: T) -> Self where
    T: Into<ChatId>, 
[src]

Setter for chat_id field.

fn message_id(self, value: i32) -> Self[src]

Setter for message_id field.

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

Setter for latitude field.

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

Setter for longitude field.

fn reply_markup<T>(self, value: T) -> Self where
    T: Into<ReplyMarkup>, 
[src]

Setter for reply_markup field.

Loading content...

Implementors

impl<P> StopMessageLiveLocationSetters for P where
    P: HasPayload<Payload = StopMessageLiveLocation>, 
[src]

Loading content...