cruster 0.0.27

A Rust framework for building distributed, stateful entity systems with durable workflows
Documentation
use serde::{Deserialize, Serialize};
use std::fmt;

/// Network address of a cluster runner (host:port).
#[derive(Debug, Clone, Hash, Eq, PartialEq, Serialize, Deserialize)]
pub struct RunnerAddress {
    pub host: String,
    pub port: u16,
}

impl RunnerAddress {
    pub fn new(host: impl Into<String>, port: u16) -> Self {
        Self {
            host: host.into(),
            port,
        }
    }
}

impl fmt::Display for RunnerAddress {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}:{}", self.host, self.port)
    }
}