1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-03 18:24:05 +02:00

flattened MatchState for compatibility

This commit is contained in:
ddeity 2023-11-11 22:05:46 +03:00
commit 4b2bf49585

View file

@ -16,6 +16,7 @@ static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
struct JsonDemo { struct JsonDemo {
header: Header, header: Header,
#[serde(flatten)]
state: MatchState, state: MatchState,
} }