1 2 3 4 5 6 7 8
use serde_json::Value; #[derive(Debug, Clone)] pub enum Body { Text(String), Json(Value), // Binary(Vec<u8>), }