fidl_examples_keyvaluestore_supporttrees

Trait StoreProxyInterface

Source
pub trait StoreProxyInterface: Send + Sync {
    type WriteItemResponseFut: Future<Output = Result<StoreWriteItemResult, Error>> + Send;

    // Required method
    fn write_item(&self, attempt: &Item) -> Self::WriteItemResponseFut;
}

Required Associated Types§

Required Methods§

Source

fn write_item(&self, attempt: &Item) -> Self::WriteItemResponseFut

Implementors§