nodecraft 0.9.1

Crafting seamless node operations for distributed systems, which provides foundational traits for node identification and address resolution.
Documentation
use core::fmt::{Debug, Display};

use cheap_clone::CheapClone;

/// Host address type alias
#[cfg(feature = "hostaddr")]
#[cfg_attr(docsrs, doc(cfg(feature = "hostaddr")))]
pub type HostAddr = hostaddr::HostAddr<smol_str_0_3::SmolStr>;

/// Domain type alias
#[cfg(feature = "hostaddr")]
#[cfg_attr(docsrs, doc(cfg(feature = "hostaddr")))]
pub type Domain = hostaddr::Domain<smol_str_0_3::SmolStr>;

/// Host address type alias
#[cfg(feature = "hostaddr")]
#[cfg_attr(docsrs, doc(cfg(feature = "hostaddr")))]
pub type HostAddrBuffer = hostaddr::HostAddr<hostaddr::Buffer>;

/// Domain type alias
#[cfg(feature = "hostaddr")]
#[cfg_attr(docsrs, doc(cfg(feature = "hostaddr")))]
pub type DomainBuffer = hostaddr::Domain<hostaddr::Buffer>;

#[cfg(feature = "hostaddr")]
#[cfg_attr(docsrs, doc(cfg(feature = "hostaddr")))]
pub use hostaddr;

/// Address abstraction for distributed systems
pub trait Address:
  CheapClone + Eq + Ord + core::hash::Hash + Debug + Display + Sized + Unpin + 'static
{
}

impl<T> Address for T where
  T: CheapClone + Eq + Ord + core::hash::Hash + Debug + Display + Sized + Unpin + 'static
{
}