[][src]Trait activitystreams::collection::AsCollectionPage

pub trait AsCollectionPage<Kind>: CollectionPage {
    fn collection_page_ref(&self) -> &CollectionPage<Kind>;
fn collection_page_mut(&mut self) -> &mut CollectionPage<Kind>; }

Implementation trait for deriving Collection methods for a type

Any type implementing AsCollectionPage will automatically gain methods provided by CollectionPageExt

Required methods

fn collection_page_ref(&self) -> &CollectionPage<Kind>

fn collection_page_mut(&mut self) -> &mut CollectionPage<Kind>

Loading content...

Implementors

impl AsCollectionPage<OrderedCollectionPageType> for OrderedCollectionPage[src]

impl<Inner, Kind> AsCollectionPage<Kind> for ApObject<Inner> where
    Inner: AsCollectionPage<Kind>, 
[src]

impl<Kind> AsCollectionPage<Kind> for CollectionPage<Kind>[src]

Loading content...