pub trait CanAnswerInlineQuery {
// Required method
fn answer(self, results: Vec<InlineQueryResult>) -> AnswerInlineQuery;
}Required Methods§
fn answer(self, results: Vec<InlineQueryResult>) -> AnswerInlineQuery
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".