[][src]Struct tgbot::types::InlineQueryResultLocation

pub struct InlineQueryResultLocation { /* fields omitted */ }

Location on a map

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

Methods

impl InlineQueryResultLocation[src]

pub fn new<I, T>(id: I, latitude: Float, longitude: Float, title: T) -> Self where
    I: Into<String>,
    T: Into<String>, 
[src]

Creates a new InlineQueryResultLocation with empty optional parameters

Arguments

  • id - Unique identifier for this result, 1-64 bytes
  • latitude - Location latitude in degrees
  • longitude - Location longitude in degrees
  • title - Location title

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

Period in seconds for which the location can be updated, should be between 60 and 86400

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 location

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 InlineQueryResultLocation[src]

impl Debug for InlineQueryResultLocation[src]

impl From<InlineQueryResultLocation> for InlineQueryResult[src]

impl Serialize for InlineQueryResultLocation[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.