resuma 0.4.7

Resuma — resumable SSR Rust web framework: zero hydration, islands, server actions, Flow (Axum).
Documentation
1
2
3
4
5
6
7
8
//! Serialization helpers shared by the various server endpoints.

use serde::Serialize;

#[derive(Serialize)]
pub struct ErrorPayload<'a> {
    pub error: &'a str,
}