[][src]Struct carapax::prelude::types::InlineQueryResultVenue

pub struct InlineQueryResultVenue { /* fields omitted */ }

Venue

By default, the venue will be sent by the user Alternatively, you can use input_message_content to send a message with the specified content instead of the venue

Methods

impl InlineQueryResultVenue[src]

pub fn new<S>(
    id: S,
    latitude: f32,
    longitude: f32,
    title: S,
    address: S
) -> InlineQueryResultVenue where
    S: Into<String>, 
[src]

Creates a new InlineQueryResultVenue with empty optional parameters

Arguments

  • id - Unique identifier for this result, 1-64 bytes
  • latitude - Latitude of the venue location in degrees
  • longitude - Longitude of the venue location in degrees
  • title - Title of the venue
  • address - Address of the venue

pub fn foursquare_id<S>(self, foursquare_id: S) -> InlineQueryResultVenue where
    S: Into<String>, 
[src]

Foursquare identifier of the venue if known

pub fn foursquare_type<S>(self, foursquare_type: S) -> InlineQueryResultVenue where
    S: Into<String>, 
[src]

Foursquare type of the venue, if known

For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”

pub fn reply_markup<I>(self, reply_markup: I) -> InlineQueryResultVenue where
    I: Into<InlineKeyboardMarkup>, 
[src]

Inline keyboard attached to the message

pub fn input_message_content(
    self,
    input_message_content: InputMessageContent
) -> InlineQueryResultVenue
[src]

Content of the message to be sent instead of the venue

pub fn thumb_url<S>(self, thumb_url: S) -> InlineQueryResultVenue where
    S: Into<String>, 
[src]

URL of the thumbnail for the result

pub fn thumb_width(self, thumb_width: i64) -> InlineQueryResultVenue[src]

Thumbnail width

pub fn thumb_height(self, thumb_height: i64) -> InlineQueryResultVenue[src]

Thumbnail height

Trait Implementations

impl From<InlineQueryResultVenue> for InlineQueryResult[src]

impl Serialize for InlineQueryResultVenue[src]

impl Debug for InlineQueryResultVenue[src]

impl Clone for InlineQueryResultVenue[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T