pub trait CanReplySendVideo {
// Required method
fn video_reply<'c, T>(&self, video: T) -> SendVideo<'c>
where T: Into<InputFile>;
}Expand description
Can reply with an video
Required Methods§
fn video_reply<'c, T>(&self, video: T) -> SendVideo<'c>
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.