[][src]Struct tgbot::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<I, T, A>(
    id: I,
    latitude: Float,
    longitude: Float,
    title: T,
    address: A
) -> Self where
    I: Into<String>,
    T: Into<String>,
    A: 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: Into<String>>(self, foursquare_id: S) -> Self[src]

Foursquare identifier of the venue if known

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

Foursquare type of the venue, if known

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

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

Inline keyboard attached to the message

pub fn input_message_content<C: Into<InputMessageContent>>(
    self,
    input_message_content: C
) -> Self
[src]

Content of the message to be sent instead of the venue

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

URL of the thumbnail for the result

pub fn thumb_width(self, thumb_width: Integer) -> Self[src]

Thumbnail width

pub fn thumb_height(self, thumb_height: Integer) -> Self[src]

Thumbnail height

Trait Implementations

impl Clone for InlineQueryResultVenue[src]

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

Performs copy-assignment from source. Read more

impl From<InlineQueryResultVenue> for InlineQueryResult[src]

impl Debug for InlineQueryResultVenue[src]

impl Serialize for InlineQueryResultVenue[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T