[][src]Struct carapax::prelude::SendVenue

pub struct SendVenue { /* fields omitted */ }

Send information about a venue

Methods

impl SendVenue[src]

pub fn new<C, S>(
    chat_id: C,
    latitude: f32,
    longitude: f32,
    title: S,
    address: S
) -> SendVenue where
    C: Into<ChatId>,
    S: 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>(self, foursquare_id: S) -> SendVenue where
    S: Into<String>, 
[src]

Foursquare identifier of the venue

pub fn foursquare_type<S>(self, foursquare_type: S) -> SendVenue 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 disable_notification(self, disable_notification: bool) -> SendVenue[src]

Users will receive a notification with no sound

pub fn reply_to_message_id(self, reply_to_message_id: i64) -> SendVenue[src]

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

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

Additional interface options

Trait Implementations

impl Method for SendVenue[src]

type Response = Message

Type of successful result in API response

impl Debug for SendVenue[src]

impl Serialize for SendVenue[src]

impl Clone for SendVenue[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for SendVenue

impl Sync for SendVenue

Blanket Implementations

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> From for T[src]

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