machina 0.6.1

Manage and execute assembly at runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Hash)]
pub struct OptimizedCache {
    pub name: String,
    pub value: usize,
}

impl Eq for OptimizedCache {}

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