1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
pub mod api_versions;
pub mod fetch;
pub mod produce;
pub mod find_coordinator;
pub mod sync_group;
pub mod join_group;
pub mod list_groups;
pub mod heartbeat;
pub mod describe_groups;
pub mod leave_group;
pub mod delete_groups;
pub mod create_topics;
pub mod delete_topics;
pub mod metadata;
pub mod update_metadata;
pub mod list_offset;
pub mod offset_fetch;
pub mod leader_and_isr;
/*
pub mod add_offsets_to_txn;
pub mod add_partitions_to_txn;
pub mod alter_configs;
pub mod alter_replica_log_dirs;
pub mod controlled_shutdown;
pub mod create_acls;
pub mod create_delegation_token;
pub mod create_partitions;
pub mod delete_acls;
pub mod delete_records;
pub mod describe_acls;
pub mod describe_configs;
pub mod describe_delegation_token;
pub mod describe_log_dirs;
pub mod elect_preferred_leaders;
pub mod end_txn;
pub mod expire_delegation_token;
pub mod init_producer_id;
pub mod offset_commit;
pub mod offset_for_leader_epoch;
pub mod renew_delegation_token;
pub mod sasl_authenticate;
pub mod sasl_handshake;
pub mod stop_replica;
pub mod txn_offset_commit;
pub mod write_txn_markers;
*/