MinedMap/src/world/json_text.rs

8 lines
181 B
Rust
Raw Normal View History

//! Newtype and helper methods for handling Minecraft Raw JSON Text
use serde::Deserialize;
/// Minecraft Raw JSON Text
#[derive(Debug, Deserialize)]
pub struct JSONText(String);