[][src]Struct tgbot::methods::SendVenue

pub struct SendVenue { /* fields omitted */ }

Send information about a venue

Methods

impl SendVenue[src]

pub fn new<C, T, A>(
    chat_id: C,
    latitude: Float,
    longitude: Float,
    title: T,
    address: A
) -> Self where
    C: Into<ChatId>,
    T: Into<String>,
    A: Into<String>, 
[src]

Creates a new SendVenue with empty optional parameters

Arguments

  • chat_id - Unique identifier for the target chat
  • latitude - Latitude of the venue
  • longitude - Longitude of the venue
  • title - Name 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

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 disable_notification(self, disable_notification: bool) -> Self[src]

Users will receive a notification with no sound

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

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

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

Additional interface options

Trait Implementations

impl Clone for SendVenue[src]

impl Debug for SendVenue[src]

impl Method for SendVenue[src]

type Response = Message

Type of successful result in API response

impl Serialize for SendVenue[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.