pub trait SlackBlocksTemplate {
// Required method
fn render_template(&self) -> Vec<SlackBlock>;
}Required Methods§
fn render_template(&self) -> Vec<SlackBlock>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".