[][src]Trait telegram_bot::types::requests::send_venue::CanReplySendVenue

pub trait CanReplySendVenue {
    pub fn venue_reply<'t, 'a, 'f, T, A>(
        &self,
        latitude: f32,
        longitude: f32,
        title: T,
        address: A
    ) -> SendVenue<'t, 'a, 'f>
    where
        T: Into<Cow<'t, str>>,
        A: Into<Cow<'a, str>>
; }

Reply with information about a venue.

Required methods

pub fn venue_reply<'t, 'a, 'f, T, A>(
    &self,
    latitude: f32,
    longitude: f32,
    title: T,
    address: A
) -> SendVenue<'t, 'a, 'f> where
    T: Into<Cow<'t, str>>,
    A: Into<Cow<'a, str>>, 
[src]

Loading content...

Implementors

impl<M> CanReplySendVenue for M where
    M: ToMessageId + ToSourceChat
[src]

Loading content...