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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
use crate::Weak;
use fallacy_alloc::AllocError;
use std::alloc::Layout;
use std::fmt;
use std::hash::Hash;
use std::ops::Deref;
use std::sync::Arc as StdArc;
#[derive(Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]
#[repr(transparent)]
pub struct Arc<T: ?Sized>(StdArc<T>);
impl<T> Arc<T> {
#[inline]
pub fn try_new(data: T) -> Result<Arc<T>, AllocError> {
Ok(Arc(
StdArc::try_new(data).map_err(|_| AllocError::new(Layout::new::<T>()))?
))
}
}
impl<T: ?Sized> Arc<T> {
#[inline]
pub fn into_std(self) -> StdArc<T> {
self.0
}
#[inline]
pub fn from_std(a: StdArc<T>) -> Self {
Arc(a)
}
#[must_use = "this returns a new `Weak` pointer, \
without modifying the original `Arc`"]
#[inline]
pub fn downgrade(this: &Self) -> Weak<T> {
Weak::from_std(StdArc::downgrade(&this.0))
}
#[must_use]
#[inline]
pub fn weak_count(this: &Self) -> usize {
StdArc::weak_count(&this.0)
}
#[must_use]
#[inline]
pub fn strong_count(this: &Self) -> usize {
StdArc::strong_count(&this.0)
}
#[must_use]
#[inline]
pub fn ptr_eq(this: &Self, other: &Self) -> bool {
StdArc::ptr_eq(&this.0, &other.0)
}
}
impl<T: ?Sized> Deref for Arc<T> {
type Target = T;
#[inline]
fn deref(&self) -> &T {
self.0.deref()
}
}
impl<T: ?Sized> AsRef<T> for Arc<T> {
#[inline]
fn as_ref(&self) -> &T {
self.0.as_ref()
}
}
impl<T: ?Sized + fmt::Display> fmt::Display for Arc<T> {
#[inline]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Display::fmt(&self.0, f)
}
}
impl<T: ?Sized + fmt::Debug> fmt::Debug for Arc<T> {
#[inline]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Debug::fmt(&self.0, f)
}
}
impl<T: ?Sized> fmt::Pointer for Arc<T> {
#[inline]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Pointer::fmt(&self.0, f)
}
}