pub trait OwnedDocuments {
    // Required method
    fn collection_documents<C>(
        &self
    ) -> Result<Vec<CollectionDocument<C>, Global>, Error>
       where C: SerializedCollection;
}
Expand description

Helper functions for a slice of OwnedDocuments.

Required Methods§

fn collection_documents<C>( &self ) -> Result<Vec<CollectionDocument<C>, Global>, Error>where C: SerializedCollection,

Returns a list of deserialized documents.

Implementations on Foreign Types§

§

impl OwnedDocuments for [OwnedDocument]

Implementors§