pub trait InteractionsExt {
// Required methods
fn reactions<I: Into<IndexSet<String>>>(self, reactions: I) -> Self;
fn restrict_reactions(self, restrict_reactions: bool) -> Self;
}Required Methods§
fn reactions<I: Into<IndexSet<String>>>(self, reactions: I) -> Self
fn restrict_reactions(self, restrict_reactions: bool) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".