Struct term_transcript::svg::HandlebarsData
source · #[non_exhaustive]pub struct HandlebarsData<'r> {
pub creator: CreatorData,
pub options: &'r TemplateOptions,
pub interactions: Vec<SerializedInteraction<'r>>,
pub has_failures: bool,
}
Available on crate feature
svg
only.Expand description
Root data structure sent to the Handlebars template.
Examples
Here’s example of JSON serialization of this type:
let mut transcript = Transcript::new();
let input = UserInput::command("rainbow");
transcript.add_interaction(input, "Hello, \u{1b}[32mworld\u{1b}[0m!");
let template_options = TemplateOptions {
palette: NamedPalette::Dracula.into(),
font_family: "Consolas, Menlo, monospace".to_owned(),
..TemplateOptions::default()
};
let data = template_options.render_data(&transcript).unwrap();
let expected_json = serde_json::json!({
"creator": {
"name": "term-transcript",
"version": "0.3.0-beta.1",
"repo": "https://github.com/slowli/term-transcript",
},
"width": 720,
"palette": {
"colors": {
"black": "#282936",
"red": "#ea51b2",
"green": "#ebff87",
"yellow": "#00f769",
"blue": "#62d6e8",
"magenta": "#b45bcf",
"cyan": "#a1efe4",
"white": "#e9e9f4",
},
"intense_colors": {
"black": "#626483",
"red": "#b45bcf",
"green": "#3a3c4e",
"yellow": "#4d4f68",
"blue": "#62d6e8",
"magenta": "#f1f2f8",
"cyan": "#00f769",
"white": "#f7f7fb",
},
},
"font_family": "Consolas, Menlo, monospace",
"window_frame": false,
"wrap": {
"hard_break_at": 80,
},
"line_numbers": null,
"has_failures": false,
"interactions": [{
"input": {
"text": "rainbow",
"prompt": "$",
},
"output_html": "Hello, <span class=\"fg2\">world</span>!",
"failure": false,
"exit_status": null,
}]
});
assert_eq!(serde_json::to_value(data).unwrap(), expected_json);
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.creator: CreatorData
Information about the rendering software.
options: &'r TemplateOptions
Template options used for rendering. These options are flattened into the parent during serialization.
interactions: Vec<SerializedInteraction<'r>>
Recorded terminal interactions.
has_failures: bool
Has any of terminal interactions failed?