pub trait GraphPatchHostDispatch: Send + Sync { // Required method fn on_patch_dispatch(&self, envelope: Value) -> Result<Value, String>; }
Optional host hook: receives the normalized GraphPatch envelope (see module docs).