1use serde_json::Value; 2 3pub enum HttpBody { 4 None, 5 Binary(Vec<u8>), 6 Json(Value), 7 PlainText(String), 8}