hdk_crud 0.15.0

A library to help quickly and easily create a consistent set of create-read-update-delete functions for an Entry type in Holochain, complete with signaling options
Documentation
1
2
3
4
5
6
7
8
use hdk::prelude::*;
use holo_hash::EntryHashB64;

#[derive(Debug, PartialEq, Serialize, Deserialize, SerializedBytes)]
pub enum FetchOptions {
    All,
    Specific(Vec<EntryHashB64>),
}