CanSendVideo

Trait CanSendVideo 

Source
pub trait CanSendVideo {
    // Required method
    fn video<'c, T>(&self, video: T) -> SendVideo<'c>
       where T: Into<InputFile>;
}
Expand description

Send an video

Required Methods§

Source

fn video<'c, T>(&self, video: T) -> SendVideo<'c>
where T: Into<InputFile>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<M> CanSendVideo for M
where M: ToChatRef,