We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
network::protocol::codec::IProtoType
1 parent 8e942af commit 83f82a4Copy full SHA for 83f82a4
CHANGELOG.md
@@ -15,6 +15,7 @@
15
- Added optional argument timeout to `network::client::Client::connect_with_config`
16
17
### Changed
18
+- `network::protocol::codec::IProtoType` uses C language representation
19
20
### Fixed
21
- `tlua::{Push, PushInto, LuaRead}` now work for HashSet & HashMap with custom hashers.
tarantool/src/network/protocol/codec.rs
@@ -56,6 +56,7 @@ crate::define_enum_with_introspection! {
56
/// See `enum iproto_type` in \<tarantool>/src/box/iproto_constants.h for source
57
/// of truth.
58
#[non_exhaustive]
59
+ #[repr(C)]
60
pub enum IProtoType {
61
/// This packet is a response with status success.
62
Ok = 0,
0 commit comments