Struct actix_telegram::methods::SendLocation[][src]

pub struct SendLocation {
    pub chat_id: ChatIdOrUsername,
    pub latitude: Float,
    pub longitude: Float,
    pub live_period: Option<Integer>,
    pub disable_notification: Option<bool>,
    pub reply_to_message_id: Option<Integer>,
    pub reply_markup: Option<ReplyMarkup>,
}

Use this method to send point on the map. On success, the sent Message is returned.

Fields

Unique identifier for the target chat or username of the target channel (in the format @channelusername)

Latitude of the location

Longitude of the location

Period in seconds for which the location will be updated (see Live Locations, should be between 60 and 86400.

Sends the message silently. Users will receive a notification with no sound.

If the message is a reply, ID of the original message

Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove reply keyboard or to force a reply from the user.

Trait Implementations

impl Debug for SendLocation
[src]

Formats the value using the given formatter. Read more

impl ActixMessage for SendLocation
[src]

The type of value that this message will resolved with if it is successful. Read more

impl Handler<SendLocation> for TelegramApi
[src]

The type of value that this handle will return

Method is called for every message received by this Actor

Auto Trait Implementations