[][src]Trait telegram_bot_fork::prelude::CanSendVenue

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

Send information about a venue.

Required methods

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

Loading content...

Implementors

impl<'t, 'a, 'f, C> CanSendVenue<'t, 'a, 'f> for C where
    C: ToChatRef
[src]

Loading content...