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§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".