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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
//! An archived version of `Result`.
use core::{
cmp::Ordering,
hash,
ops::{Deref, DerefMut},
};
use crate::{seal::Seal, Portable};
/// An archived [`Result`] that represents either success
/// ([`Ok`](ArchivedResult::Ok)) or failure ([`Err`](ArchivedResult::Err)).
#[derive(Debug, Portable)]
#[rkyv(crate)]
#[cfg_attr(feature = "bytecheck", derive(bytecheck::CheckBytes))]
#[repr(u8)]
pub enum ArchivedResult<T, E> {
/// Contains the success value
Ok(T),
/// Contains the error value
Err(E),
}
impl<T, E> ArchivedResult<T, E> {
/// Converts from `ArchivedResult<T, E>` to `Option<T>`.
pub fn ok(self) -> Option<T> {
match self {
ArchivedResult::Ok(value) => Some(value),
ArchivedResult::Err(_) => None,
}
}
/// Returns the contained [`Ok`](ArchivedResult::Ok) value, consuming the
/// `self` value.
pub fn unwrap(self) -> T {
match self {
ArchivedResult::Ok(value) => value,
ArchivedResult::Err(_) => {
panic!("called `ArchivedResult::unwrap()` on an `Err` value")
}
}
}
/// Returns the contained `Ok` value or computes it from a closure.
pub fn unwrap_or_else<F>(self, op: F) -> T
where
F: FnOnce(E) -> T,
{
match self {
ArchivedResult::Ok(t) => t,
ArchivedResult::Err(e) => op(e),
}
}
/// Returns `true` if the result is [`Ok`](ArchivedResult::Ok).
pub const fn is_ok(&self) -> bool {
matches!(self, ArchivedResult::Ok(_))
}
/// Returns `true` if the result is [`Err`](ArchivedResult::Err).
pub const fn is_err(&self) -> bool {
matches!(self, ArchivedResult::Err(_))
}
/// Returns a `Result` containing the success and error values of this
/// `ArchivedResult`.
pub fn as_ref(&self) -> Result<&T, &E> {
match self {
ArchivedResult::Ok(value) => Ok(value),
ArchivedResult::Err(err) => Err(err),
}
}
/// Converts from `&mut ArchivedResult<T, E>` to `Result<&mut T, &mut E>`.
pub fn as_mut(&mut self) -> Result<&mut T, &mut E> {
match self {
ArchivedResult::Ok(value) => Ok(value),
ArchivedResult::Err(err) => Err(err),
}
}
/// Converts from `Seal<'_, ArchivedResult<T, E>>` to
/// `Result<Seal<'_, T>, Seal<'_, E>>`.
pub fn as_seal(this: Seal<'_, Self>) -> Result<Seal<'_, T>, Seal<'_, E>> {
let this = unsafe { Seal::unseal_unchecked(this) };
match this {
ArchivedResult::Ok(value) => Ok(Seal::new(value)),
ArchivedResult::Err(err) => Err(Seal::new(err)),
}
}
/// Returns an iterator over the possibly-contained value.
///
/// The iterator yields one value if the result is `ArchivedResult::Ok`,
/// otherwise none.
pub fn iter(&self) -> Iter<&'_ T> {
Iter::new(self.as_ref().ok())
}
/// Returns an iterator over the mutable possibly-contained value.
///
/// The iterator yields one value if the result is `ArchivedResult::Ok`,
/// otherwise none.
pub fn iter_mut(&mut self) -> Iter<&'_ mut T> {
Iter::new(self.as_mut().ok())
}
/// Returns an iterator over the sealed possibly-contained value.
///
/// The iterator yields one value if the result is `ArchivedResult::Ok`,
/// otherwise none.
pub fn iter_seal(this: Seal<'_, Self>) -> Iter<Seal<'_, T>> {
Iter::new(Self::as_seal(this).ok())
}
}
impl<T: Deref, E> ArchivedResult<T, E> {
/// Converts from `&ArchivedResult<T, E>` to `Result<&<T as Deref>::Target,
/// &E>`.
///
/// Coerces the `Ok` variant of the original `ArchivedResult` via `Deref`
/// and returns the new `Result`.
pub fn as_deref(&self) -> Result<&<T as Deref>::Target, &E> {
match self {
ArchivedResult::Ok(value) => Ok(value.deref()),
ArchivedResult::Err(err) => Err(err),
}
}
}
impl<T: DerefMut, E> ArchivedResult<T, E> {
/// Converts from `&mut ArchivedResult<T, E>` to `Result<&mut <T as
/// Deref>::Target, &mut E>`.
///
/// Coerces the `Ok` variant of the original `ArchivedResult` via `DerefMut`
/// and returns the new `Result`.
pub fn as_deref_mut(
&mut self,
) -> Result<&mut <T as Deref>::Target, &mut E> {
match self {
ArchivedResult::Ok(value) => Ok(value.deref_mut()),
ArchivedResult::Err(err) => Err(err),
}
}
}
/// An iterator over a reference to the `Ok` variant of an [`ArchivedResult`].
///
/// The iterator yields one value if the result is `Ok`, otherwise none.
///
/// Created by [`ArchivedResult::iter`].
pub type Iter<P> = crate::option::Iter<P>;
impl<T: Eq, E: Eq> Eq for ArchivedResult<T, E> {}
impl<T: hash::Hash, E: hash::Hash> hash::Hash for ArchivedResult<T, E> {
fn hash<H: hash::Hasher>(&self, state: &mut H) {
self.as_ref().hash(state)
}
}
impl<T: Ord, E: Ord> Ord for ArchivedResult<T, E> {
fn cmp(&self, other: &Self) -> Ordering {
self.as_ref().cmp(&other.as_ref())
}
}
impl<T: PartialEq, E: PartialEq> PartialEq for ArchivedResult<T, E> {
fn eq(&self, other: &Self) -> bool {
self.as_ref().eq(&other.as_ref())
}
}
impl<T: PartialOrd, E: PartialOrd> PartialOrd for ArchivedResult<T, E> {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
self.as_ref().partial_cmp(&other.as_ref())
}
}
impl<T, U, E, F> PartialEq<Result<T, E>> for ArchivedResult<U, F>
where
U: PartialEq<T>,
F: PartialEq<E>,
{
fn eq(&self, other: &Result<T, E>) -> bool {
match self {
ArchivedResult::Ok(self_value) => {
if let Ok(other_value) = other {
self_value.eq(other_value)
} else {
false
}
}
ArchivedResult::Err(self_err) => {
if let Err(other_err) = other {
self_err.eq(other_err)
} else {
false
}
}
}
}
}