1use std::collections::BTreeMap;
2
3pub mod defaults;
4pub mod macros;
5pub mod partition;
6
7
8pub use partition::PartitionError;
9
10pub type ReplicaMap = BTreeMap<i32, Vec<i32>>;
14pub type Reason = String;
15pub type Name = String;
16
17pub type SpuName = String;
18pub type SpuId = i32;
19
20pub type IsOnline = bool;
21pub type IsOk = bool;
22
23pub type TopicName = String;
25pub type PartitionId = i32;
26pub type PartitionCount = i32;
27pub type ReplicationFactor = i32;
28pub type IgnoreRackAssignment = bool;
29
30pub type TokenName = String;
32pub type TokenSecret = String;