英文:
How to deserialize Decimal of Tarantool 2.10+ response in Rust?
问题
使用Rust选择包含字段类型为decimal
的space
,如何进行反序列化?
我正在使用alopecosa crate,可以成功选择基本类型,如布尔、字符串和数字,但是对于一些新类型,比如decimal
,需要手动反序列化。
我想要的类型是Decimal (rust_decimal crate)。
英文:
With Rust select space
contain field type decimal
how to deserialize?
I am using alopecosa crate select working fine primative type like boolean, string, number expect some new type like decimal need manual deserialize
Type I want Decimal (rust_decimal crate)
答案1
得分: 1
我使用 tarantool::decimal::Decimal;
导入修复了 Rust tarantool runtime 这个 crate。只需将 Rust 结构字段设置为上述 crate 中的类型 Decimal
即可完成。
英文:
I fixed with import tarantool::decimal::Decimal;
the crate Rust tarantool runtime
Just make Rust struct field as type Decimal
from above crate it done
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论