aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rust/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/lib.rs b/rust/src/lib.rs
index 6f52702..10ca18e 100644
--- a/rust/src/lib.rs
+++ b/rust/src/lib.rs
@@ -32,7 +32,7 @@ use std::vec::Vec;
32use tokio::io::{AsyncReadExt,AsyncWriteExt,AsyncRead,AsyncWrite}; 32use tokio::io::{AsyncReadExt,AsyncWriteExt,AsyncRead,AsyncWrite};
33 33
34/// Represents a value in a Gats structure. 34/// Represents a value in a Gats structure.
35#[derive(PartialEq)] 35#[derive(PartialEq,Debug)]
36pub enum Value { 36pub enum Value {
37 Integer(i64), 37 Integer(i64),
38 ByteString(Vec<u8>), 38 ByteString(Vec<u8>),