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
use std::collections::BTreeMap;

pub mod defaults;
pub mod macros;
pub mod partition;

#[cfg(feature = "events")]
pub mod event;

pub use partition::PartitionError;

//
// Types
//
pub type ReplicaMap = BTreeMap<i32, Vec<i32>>;
pub type Reason = String;
pub type Name = String;

pub type SpuName = String;
pub type SpuId = i32;

pub type IsOnline = bool;
pub type IsOk = bool;

// Topic
pub type TopicName = String;
pub type PartitionId = i32;
pub type PartitionCount = i32;
pub type ReplicationFactor = i32;
pub type IgnoreRackAssignment = bool;

// AuthToken
pub type TokenName = String;
pub type TokenSecret = String;