pub trait PageDescriptionProvider: Source {
// Required method
fn get_page_description(&self, page: Page) -> Result<String>;
}Expand description
A source that provides dynamic descriptions for pages.
Required Methods§
fn get_page_description(&self, page: Page) -> Result<String>
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.