Struct telegram_typings::InputVenueMessageContent [] [src]

pub struct InputVenueMessageContent {
    pub latitude: f64,
    pub longitude: f64,
    pub title: String,
    pub address: String,
    pub foursquare_id: Option<String>,
}

Represents the content of a venue message to be sent as the result of an inline query. See https://core.telegram.org/bots/api#inputmessagecontent

Fields

Latitude of the venue in degrees

Longitude of the venue in degrees

Name of the venue

Address of the venue

Foursquare identifier of the venue, if known

Trait Implementations

impl Debug for InputVenueMessageContent
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for InputVenueMessageContent
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations