pub trait CollectionPageExt: CollectionPage {
// Required methods
fn props(&self) -> &CollectionPageProperties;
fn props_mut(&mut self) -> &mut CollectionPageProperties;
}Expand description
The Collection Page Extension Trait
This trait provides generic access to a collection page’s properties
Required Methods§
fn props(&self) -> &CollectionPageProperties
fn props_mut(&mut self) -> &mut CollectionPageProperties
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.