diff_hashmap_list 0.0.1

This crate is diff tool for HashMap.
Documentation
/// diff value
#[derive(Debug, Clone, Eq, PartialEq)]
pub enum Value {
    /// String type
    String(String),
    /// usize type
    Int(usize),
}

impl From<usize> for Value {
    fn from(value: usize) -> Self {
        Value::Int(value)
    }
}

impl From<&str> for Value {
    fn from(value: &str) -> Self {
        Value::String(value.to_string())
    }
}