hypergraph 3.0.0

Hypergraph is data structure library to create a directed hypergraph in which an hyperedge can join any number of vertices.
Documentation
#![deny(unsafe_code, nonstandard_style)]

use std::fmt::{
    Display,
    Formatter,
    Result,
};

#[derive(Debug, Copy, Clone, Hash, Eq, PartialEq)]
pub(crate) struct Vertex<'a> {
    name: &'a str,
}

impl<'a> Vertex<'a> {
    pub(crate) fn new(name: &'a str) -> Self {
        Vertex { name }
    }
}

impl Display for Vertex<'_> {
    fn fmt(&self, formatter: &mut Formatter<'_>) -> Result {
        write!(formatter, "{}", self.name)
    }
}

#[derive(Debug, Copy, Clone, Hash, Eq, PartialEq)]
pub struct Hyperedge<'a> {
    cost: usize,
    name: &'a str,
}

impl<'a> Hyperedge<'a> {
    pub fn new(name: &'a str, cost: usize) -> Self {
        Hyperedge { cost, name }
    }
}

impl Display for Hyperedge<'_> {
    fn fmt(&self, formatter: &mut Formatter<'_>) -> Result {
        write!(formatter, "{}", self.name)
    }
}

impl<'a> From<Hyperedge<'a>> for usize {
    fn from(Hyperedge { cost, .. }: Hyperedge<'a>) -> Self {
        cost
    }
}