Skip to content

Instantly share code, notes, and snippets.

@willemolding
Created October 19, 2021 00:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save willemolding/80284792d5b49b96a34e7c35ad68c2db to your computer and use it in GitHub Desktop.
Save willemolding/80284792d5b49b96a34e7c35ad68c2db to your computer and use it in GitHub Desktop.
pub enum Value {
Null,
Bool(bool),
Number(Number),
String(String),
Array(Vec<Value>),
Object(Map<String, Value>),
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment