pub trait CanReplySendAudio {
    fn audio_url_reply<'s, 'c, 'p, 't, T>(
        &self,
        url: T
    ) -> SendAudio<'s, 'c, 'p, 't>
    where
        T: Into<Cow<'s, str>>
; }
Expand description

Can reply with an audio

Required Methods

Implementors