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

Send information about a venue.

Required Methods§

Implementors§