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

Helper functions for a slice of OwnedDocuments.

Required methods

Returns a list of deserialized documents.

Implementations on Foreign Types

Implementors