chara_card 0.3.2

A library to deal with character card formats and `.charx` in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
use serdev::{Deserialize, Serialize};

/// **Not Enough Observed**
///
/// Represents miscellaneous extension.
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct DepthPrompt {
    pub depth: u64,
    pub prompt: String,
}