1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
use std::sync::atomic::AtomicUsize;
use std::sync::atomic::Ordering;
#[derive(Debug, Default)]
pub struct CachedSize {
size: AtomicUsize,
}
impl CachedSize {
pub fn get(&self) -> u32 {
self.size.load(Ordering::Relaxed) as u32
}
pub fn set(&self, size: u32) {
self.size.store(size as usize, Ordering::Relaxed)
}
}
impl Clone for CachedSize {
fn clone(&self) -> CachedSize {
CachedSize {
size: AtomicUsize::new(self.size.load(Ordering::Relaxed)),
}
}
}
impl PartialEq<CachedSize> for CachedSize {
fn eq(&self, _other: &CachedSize) -> bool {
true
}
}
impl Eq for CachedSize {}