pub trait AsCollectionPage: CollectionPage {
    type Kind;

    fn collection_page_ref(&self) -> &CollectionPage<Self::Kind>;
    fn collection_page_mut(&mut self) -> &mut CollectionPage<Self::Kind>;
}
Expand description

Implementation trait for deriving Collection methods for a type

Any type implementing AsCollectionPage will automatically gain methods provided by CollectionPageExt

Required Associated Types§

Required Methods§

Implementors§