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
// devela::code::result::own
//
//! Defines [`Own`].
//
/// A return type encapsulating an owned **state** `S` and a **value** `V`.
///
/// It is designed to be used by methods that take ownership of `self`,
/// and return it alongside the operation-specific result.
///
/// By convention methods that return an `Own` should to be prefixed with `own_`,
/// and any [`Result`] or [`Option`] should be part of the `state` field for the
/// constructors, and part of the `value` field for most other methods, allowing
/// `self` to be passed along a chain of operations.
///
/// ## Methods
///
/// ### [General methods](#impl-Own<S,+V>)
/// Additional [*const* methods](#impl-Own<S,+V>-1) are available when both types are `Copy`.
/// - Construct:
/// [`new`](#method.new),
/// [`empty`](#method.empty).
/// - Deconstruct:
/// [`sv`](#method.sv)*([const](#method.sv_const))*
/// [`sv_ref`](#method.sv_ref),
/// [`sv_mut`](#method.sv_mut).
/// - Replace:
/// [`s_replace`](#method.s_replace)*([const](#method.s_const_replace))*,
/// [`v_replace`](#method.v_replace)*([const](#method.v_const_replace))*,
/// [`sv_replace`](#method.sv_replace)*([const](#method.sv_const_replace))*,
/// - Wrap:
/// [`s_wrap_ok`](#method.s_wrap_ok)*([const](#method.s_const_wrap_ok))*,
/// [`s_wrap_some`](#method.s_wrap_some)*([const](#method.s_const_wrap_some))*,
/// [`v_wrap_ok`](#method.v_wrap_ok)*([const](#method.v_const_wrap_ok))*,
/// [`v_wrap_some`](#method.v_wrap_some)*([const](#method.v_const_wrap_some))*,
/// - Map:
/// [`s_map`](#method.s_map),
/// [`v_map`](#method.v_map),
/// [`sv_map`](#method.sv_map).
/// - Query:
/// [`s_eq`](#method.s_eq),
/// [`v_eq`](#method.v_eq),
/// [`sv_eq`](#method.sv_eq).
/// - Assert:
/// [`s_assert`](#method.s_assert)*([or](#method.s_assert_or),
/// [eq](#method.s_assert_eq), [eq_or](#method.s_assert_eq_or))*,
/// [`v_assert`](#method.v_assert)*([or](#method.v_assert_or)
/// [eq](#method.v_assert_eq), [eq_or](#method.v_assert_eq_or))*,
/// [`sv_assert`](#method.sv_assert)*([or](#method.sv_assert_or),
/// [eq](#method.sv_assert_eq), [eq_or](#method.sv_assert_eq_or))*.
///
/// ### [Methods for when `state` is a `Result`](#impl-Own<Result<S,+E>,+V>)
/// - Map:
/// [`s_map_ok`](#method.s_map_ok),
/// [`s_map_err`](#method.s_map_err),
/// [`s_and`](#method.s_and),
/// [`s_and_then`](#method.s_and_then).
/// - Assert:
/// [`s_assert_ok`](#method.s_assert_ok)*([or](#method.s_assert_ok_or))*,
/// [`s_assert_err`](#method.s_assert_err)*([or](#method.s_assert_err_or))*.
/// - Unwrap:
/// [`s_unwrap`](#method.s_unwrap)*([const](#method.s_const_unwrap))*,
/// [`s_unwrap_or`](#method.s_unwrap_or)*([const](#method.s_const_unwrap_or))*,
/// [`s_expect`](#method.s_expect)*([const](#method.s_const_expect))*.
///
/// ### [Methods for when `state` is an `Option`](#impl-Own<Option<S>,+V>)
/// - Map:
/// [`s_map_some`](#method.s_map_some),
/// [`s_and`](#method.s_and-1),
/// [`s_and_then`](#method.s_and_then-1).
/// - Assert:
/// [`s_assert_some`](#method.s_assert_some)*([or](#method.s_assert_some_or))*,
/// [`s_assert_none`](#method.s_assert_none)*([or](#method.s_assert_none_or))*.
/// - Unwrap:
/// [`s_unwrap`](#method.s_unwrap-1)*([const](#method.s_const_unwrap-1))*,
/// [`s_unwrap_or`](#method.s_unwrap_or-1)*([const](#method.s_const_unwrap_or-1))*,
/// [`s_expect`](#method.s_expect-1)*([const](#method.s_const_expect-1))*.
///
/// ### [Methods for when `value` is a `Result`](#impl-Own<S,+Result<V,+E>>)
/// - Map:
/// [`v_map_ok`](#method.v_map_ok),
/// [`v_map_err`](#method.v_map_err),
/// [`v_and`](#method.v_and),
/// [`v_and_then`](#method.v_and_then).
/// - Assert:
/// [`v_assert_ok`](#method.v_assert_ok)*([or](#method.v_assert_ok_or))*,
/// [`v_assert_err`](#method.v_assert_err)*([or](#method.v_assert_err_or))*.
/// - Unwrap:
/// [`v_unwrap`](#method.v_unwrap)*([const](#method.v_const_unwrap))*,
/// [`v_unwrap_or`](#method.v_unwrap_or)*([const](#method.v_const_unwrap_or))*,
/// [`v_expect`](#method.v_expect)*([const](#method.v_const_expect))*.
///
/// ### [Methods for when `value` is an `Option`](#impl-Own<S,+Option<V>>)
/// - Map:
/// [`v_map_some`](#method.v_map_some),
/// [`v_and`](#method.v_and-1),
/// [`v_and_then`](#method.v_and_then-1).
/// - Assert:
/// [`v_assert_some`](#method.v_assert_some)*([or](#method.v_assert_some_or))*,
/// [`v_assert_none`](#method.v_assert_none)*([or](#method.v_assert_none_or))*.
/// - Unwrap:
/// [`v_unwrap`](#method.v_unwrap-1)*([const](#method.v_const_unwrap-1))*,
/// [`v_unwrap_or`](#method.v_unwrap_or-1)*([const](#method.v_const_unwrap_or-1))*,
/// [`v_expect`](#method.v_expect-1)*([const](#method.v_const_expect-1))*.