rskafka/protocol/
mod.rs

1//! The Apache Kafka protocol.
2//!
3//! # References
4//! - <https://github.com/edenhill/librdkafka/blob/2b76b65212e5efda213961d5f84e565038036270/src/rdkafka_feature.c#L52-L212>
5//! - <https://kafka.apache.org/protocol>
6//! - <https://kafka.apache.org/documentation>
7//! - <https://github.com/twmb/franz-go/tree/858592494064d5a6bef4b622a567183a39932712/generate/definitions>
8pub mod api_key;
9pub mod api_version;
10pub mod error;
11pub mod frame;
12pub mod messages;
13pub mod primitives;
14pub mod record;
15#[cfg(test)]
16pub mod test_utils;
17pub mod traits;
18pub mod vec_builder;