pub type Result<T> = Result<T, LeaderElectionError>;Expand description
Result type for leader election operations
Convenience type alias for Results that may fail with LeaderElectionError
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(LeaderElectionError),
}