commit | b6b6dc715c0073af76de8244191b18c43ed4d24d | [log] [tgz] |
---|---|---|
author | Jiayu Liu <jiayu.liu@airbnb.com> | Sat Oct 08 14:28:44 2022 +0800 |
committer | Jens Geyer <Jens-G@users.noreply.github.com> | Thu Oct 12 22:38:37 2023 +0200 |
tree | ad872a3b832d1ab5a1427949b5ba735f7b693100 | |
parent | 653d184a840dee4221d8fbf88b91ec6318cd2684 [diff] [blame] |
rust to add uuid support
diff --git a/lib/rs/src/protocol/stored.rs b/lib/rs/src/protocol/stored.rs index 179ae07..f4bdfb1 100644 --- a/lib/rs/src/protocol/stored.rs +++ b/lib/rs/src/protocol/stored.rs
@@ -158,6 +158,10 @@ self.inner.read_double() } + fn read_uuid(&mut self) -> crate::Result<uuid::Uuid> { + self.inner.read_uuid() + } + fn read_string(&mut self) -> crate::Result<String> { self.inner.read_string() }