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/test/rs/src/bin/test_server.rs b/test/rs/src/bin/test_server.rs index 92a4bcc..3e622d5 100644 --- a/test/rs/src/bin/test_server.rs +++ b/test/rs/src/bin/test_server.rs
@@ -174,6 +174,11 @@ Ok(thing) } + fn handle_test_uuid(&self, thing: uuid::Uuid) -> thrift::Result<uuid::Uuid> { + info!("testUUID({})", &thing); + Ok(thing) + } + fn handle_test_bool(&self, thing: bool) -> thrift::Result<bool> { info!("testBool({})", thing); Ok(thing)