1
2
3
4
5
6
7
8
/// Represents type of a member in a [`Cluster`]
#[derive(Debug)]
pub enum MemberType {
    /// Represents local machine
    Local,
    /// Represents a virtually or geographically seperate machine
    Remote,
}