highdash 0.0.1

A lodash alternative for Rust. Great package for people coming from Javascript
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[allow(unused)]
#[derive(Debug, Clone)]
pub struct TestStructUser {
    pub name: String,
    pub age: i32,
}

impl PartialEq<TestStructUser> for TestStructUser {
    fn eq(&self, other: &TestStructUser) -> bool {
        self.age == other.age && self.name == other.name
    }
}