aboutsummaryrefslogtreecommitdiff
path: root/rust/src/lib.rs
diff options
context:
space:
mode:
authorMike Buland <mike@xagasoft.com>2025-11-25 10:02:25 -0800
committerMike Buland <mike@xagasoft.com>2025-11-25 10:02:25 -0800
commit42ae5aa96b403edf7c329940f915a0438d4cb481 (patch)
tree19bf765b86b1b0706b35bde0a55b371b8f48d401 /rust/src/lib.rs
parent1680dc7c18135548d1a0e237d5b4a8d95a79cd68 (diff)
downloadlibgats-42ae5aa96b403edf7c329940f915a0438d4cb481.tar.gz
libgats-42ae5aa96b403edf7c329940f915a0438d4cb481.tar.bz2
libgats-42ae5aa96b403edf7c329940f915a0438d4cb481.tar.xz
libgats-42ae5aa96b403edf7c329940f915a0438d4cb481.zip
Addedd debug
Diffstat (limited to 'rust/src/lib.rs')
-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>),