interstice-abi 0.5.0

WASM ABI types and host-call interfaces for the Interstice runtime
Documentation
1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};

use crate::SubscriptionEventSchema;

#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct SubscriptionSchema {
    pub reducer_name: String,
    pub event: SubscriptionEventSchema,
}