diff options
| author | Arnaud Bailly <arnaud.bailly@iohk.io> | 2024-10-05 10:41:55 +0200 |
|---|---|---|
| committer | Arnaud Bailly <arnaud.bailly@iohk.io> | 2024-10-05 10:41:55 +0200 |
| commit | 22a53ab297447c2f044d01bf443f7b140745762f (patch) | |
| tree | e959a60c2a855dadfa3b653b2e3cd18c1b383ef1 /rust/src/ast.rs | |
| parent | c7ecec3f7e64bfbc8dc0231d538599716e1ccf88 (diff) | |
| download | lambda-nantes-22a53ab297447c2f044d01bf443f7b140745762f.tar.gz | |
Basic loop to send requests to registered clients
Diffstat (limited to 'rust/src/ast.rs')
| -rw-r--r-- | rust/src/ast.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rust/src/ast.rs b/rust/src/ast.rs index 2221856..dfb6862 100644 --- a/rust/src/ast.rs +++ b/rust/src/ast.rs @@ -1,6 +1,8 @@ use std::fmt::{self, Display}; -#[derive(Debug, PartialEq, Clone)] +use serde::{Deserialize, Serialize}; + +#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)] pub enum Value { Num(i32), Bool(bool), |
