resuma 0.4.1

Resuma — SSR + Resumability + Islands + Server Actions + JS Bridge for Rust
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,
}