Skip to main content

core/
result.rs

1//! Error handling with the `Result` type.
2//!
3//! [`Result<T, E>`][`Result`] is the type used for returning and propagating
4//! errors. It is an enum with the variants, [`Ok(T)`], representing
5//! success and containing a value, and [`Err(E)`], representing error
6//! and containing an error value.
7//!
8//! ```
9//! # #[allow(dead_code)]
10//! enum Result<T, E> {
11//!    Ok(T),
12//!    Err(E),
13//! }
14//! ```
15//!
16//! Functions return [`Result`] whenever errors are expected and
17//! recoverable. In the `std` crate, [`Result`] is most prominently used
18//! for [I/O](../../std/io/index.html).
19//!
20//! A simple function returning [`Result`] might be
21//! defined and used like so:
22//!
23//! ```
24//! #[derive(Debug)]
25//! enum Version { Version1, Version2 }
26//!
27//! fn parse_version(header: &[u8]) -> Result<Version, &'static str> {
28//!     match header.get(0) {
29//!         None => Err("invalid header length"),
30//!         Some(&1) => Ok(Version::Version1),
31//!         Some(&2) => Ok(Version::Version2),
32//!         Some(_) => Err("invalid version"),
33//!     }
34//! }
35//!
36//! let version = parse_version(&[1, 2, 3, 4]);
37//! match version {
38//!     Ok(v) => println!("working with version: {v:?}"),
39//!     Err(e) => println!("error parsing header: {e:?}"),
40//! }
41//! ```
42//!
43//! Pattern matching on [`Result`]s is clear and straightforward for
44//! simple cases, but [`Result`] comes with some convenience methods
45//! that make working with it more succinct.
46//!
47//! ```
48//! // The `is_ok` and `is_err` methods do what they say.
49//! let good_result: Result<i32, i32> = Ok(10);
50//! let bad_result: Result<i32, i32> = Err(10);
51//! assert!(good_result.is_ok() && !good_result.is_err());
52//! assert!(bad_result.is_err() && !bad_result.is_ok());
53//!
54//! // `map` and `map_err` consume the `Result` and produce another.
55//! let good_result: Result<i32, i32> = good_result.map(|i| i + 1);
56//! let bad_result: Result<i32, i32> = bad_result.map_err(|i| i - 1);
57//! assert_eq!(good_result, Ok(11));
58//! assert_eq!(bad_result, Err(9));
59//!
60//! // Use `and_then` to continue the computation.
61//! let good_result: Result<bool, i32> = good_result.and_then(|i| Ok(i == 11));
62//! assert_eq!(good_result, Ok(true));
63//!
64//! // Use `or_else` to handle the error.
65//! let bad_result: Result<i32, i32> = bad_result.or_else(|i| Ok(i + 20));
66//! assert_eq!(bad_result, Ok(29));
67//!
68//! // Consume the result and return the contents with `unwrap`.
69//! let final_awesome_result = good_result.unwrap();
70//! assert!(final_awesome_result)
71//! ```
72//!
73//! # Results must be used
74//!
75//! A common problem with using return values to indicate errors is
76//! that it is easy to ignore the return value, thus failing to handle
77//! the error. [`Result`] is annotated with the `#[must_use]` attribute,
78//! which will cause the compiler to issue a warning when a Result
79//! value is ignored. This makes [`Result`] especially useful with
80//! functions that may encounter errors but don't otherwise return a
81//! useful value.
82//!
83//! Consider the [`write_all`] method defined for I/O types
84//! by the [`Write`] trait:
85//!
86//! ```
87//! use std::io;
88//!
89//! trait Write {
90//!     fn write_all(&mut self, bytes: &[u8]) -> Result<(), io::Error>;
91//! }
92//! ```
93//!
94//! *Note: The actual definition of [`Write`] uses [`io::Result`], which
95//! is just a synonym for <code>[Result]<T, [io::Error]></code>.*
96//!
97//! This method doesn't produce a value, but the write may
98//! fail. It's crucial to handle the error case, and *not* write
99//! something like this:
100//!
101//! ```no_run
102//! # #![allow(unused_must_use)] // \o/
103//! use std::fs::File;
104//! use std::io::prelude::*;
105//!
106//! let mut file = File::create("valuable_data.txt").unwrap();
107//! // If `write_all` errors, then we'll never know, because the return
108//! // value is ignored.
109//! file.write_all(b"important message");
110//! ```
111//!
112//! If you *do* write that in Rust, the compiler will give you a
113//! warning (by default, controlled by the `unused_must_use` lint).
114//!
115//! You might instead, if you don't want to handle the error, simply
116//! assert success with [`expect`]. This will panic if the
117//! write fails, providing a marginally useful message indicating why:
118//!
119//! ```no_run
120//! use std::fs::File;
121//! use std::io::prelude::*;
122//!
123//! let mut file = File::create("valuable_data.txt").unwrap();
124//! file.write_all(b"important message").expect("failed to write message");
125//! ```
126//!
127//! You might also simply assert success:
128//!
129//! ```no_run
130//! # use std::fs::File;
131//! # use std::io::prelude::*;
132//! # let mut file = File::create("valuable_data.txt").unwrap();
133//! assert!(file.write_all(b"important message").is_ok());
134//! ```
135//!
136//! Or propagate the error up the call stack with [`?`]:
137//!
138//! ```
139//! # use std::fs::File;
140//! # use std::io::prelude::*;
141//! # use std::io;
142//! # #[allow(dead_code)]
143//! fn write_message() -> io::Result<()> {
144//!     let mut file = File::create("valuable_data.txt")?;
145//!     file.write_all(b"important message")?;
146//!     Ok(())
147//! }
148//! ```
149//!
150//! # The question mark operator, `?`
151//!
152//! When writing code that calls many functions that return the
153//! [`Result`] type, the error handling can be tedious. The question mark
154//! operator, [`?`], hides some of the boilerplate of propagating errors
155//! up the call stack.
156//!
157//! It replaces this:
158//!
159//! ```
160//! # #![allow(dead_code)]
161//! use std::fs::File;
162//! use std::io::prelude::*;
163//! use std::io;
164//!
165//! struct Info {
166//!     name: String,
167//!     age: i32,
168//!     rating: i32,
169//! }
170//!
171//! fn write_info(info: &Info) -> io::Result<()> {
172//!     // Early return on error
173//!     let mut file = match File::create("my_best_friends.txt") {
174//!            Err(e) => return Err(e),
175//!            Ok(f) => f,
176//!     };
177//!     if let Err(e) = file.write_all(format!("name: {}\n", info.name).as_bytes()) {
178//!         return Err(e)
179//!     }
180//!     if let Err(e) = file.write_all(format!("age: {}\n", info.age).as_bytes()) {
181//!         return Err(e)
182//!     }
183//!     if let Err(e) = file.write_all(format!("rating: {}\n", info.rating).as_bytes()) {
184//!         return Err(e)
185//!     }
186//!     Ok(())
187//! }
188//! ```
189//!
190//! With this:
191//!
192//! ```
193//! # #![allow(dead_code)]
194//! use std::fs::File;
195//! use std::io::prelude::*;
196//! use std::io;
197//!
198//! struct Info {
199//!     name: String,
200//!     age: i32,
201//!     rating: i32,
202//! }
203//!
204//! fn write_info(info: &Info) -> io::Result<()> {
205//!     let mut file = File::create("my_best_friends.txt")?;
206//!     // Early return on error
207//!     file.write_all(format!("name: {}\n", info.name).as_bytes())?;
208//!     file.write_all(format!("age: {}\n", info.age).as_bytes())?;
209//!     file.write_all(format!("rating: {}\n", info.rating).as_bytes())?;
210//!     Ok(())
211//! }
212//! ```
213//!
214//! *It's much nicer!*
215//!
216//! Ending the expression with [`?`] will result in the [`Ok`]'s unwrapped value, unless the result
217//! is [`Err`], in which case [`Err`] is returned early from the enclosing function.
218//!
219//! [`?`] can be used in functions that return [`Result`] because of the
220//! early return of [`Err`] that it provides.
221//!
222//! [`expect`]: Result::expect
223//! [`Write`]: ../../std/io/trait.Write.html "io::Write"
224//! [`write_all`]: ../../std/io/trait.Write.html#method.write_all "io::Write::write_all"
225//! [`io::Result`]: ../../std/io/type.Result.html "io::Result"
226//! [`?`]: crate::ops::Try
227//! [`Ok(T)`]: Ok
228//! [`Err(E)`]: Err
229//! [io::Error]: ../../std/io/struct.Error.html "io::Error"
230//!
231//! # Representation
232//!
233//! In some cases, [`Result<T, E>`] comes with size, alignment, and ABI
234//! guarantees. Specifically, one of either the `T` or `E` type must be a type
235//! that qualifies for the `Option` [representation guarantees][opt-rep] (let's
236//! call that type `I`), and the *other* type is a zero-sized type with
237//! alignment 1 (a "1-ZST").
238//!
239//! If that is the case, then `Result<T, E>` has the same size, alignment, and
240//! [function call ABI] as `I` (and therefore, as `Option<I>`). If `I` is `T`,
241//! it is therefore sound to transmute a value `t` of type `I` to type
242//! `Result<T, E>` (producing the value `Ok(t)`) and to transmute a value
243//! `Ok(t)` of type `Result<T, E>` to type `I` (producing the value `t`). If `I`
244//! is `E`, the same applies with `Ok` replaced by `Err`.
245//!
246//! For example, `NonZeroI32` qualifies for the `Option` representation
247//! guarantees and `()` is a zero-sized type with alignment 1. This means that
248//! both `Result<NonZeroI32, ()>` and `Result<(), NonZeroI32>` have the same
249//! size, alignment, and ABI as `NonZeroI32` (and `Option<NonZeroI32>`). The
250//! only difference between these is in the implied semantics:
251//!
252//! * `Option<NonZeroI32>` is "a non-zero i32 might be present"
253//! * `Result<NonZeroI32, ()>` is "a non-zero i32 success result, if any"
254//! * `Result<(), NonZeroI32>` is "a non-zero i32 error result, if any"
255//!
256//! [opt-rep]: ../option/index.html#representation "Option Representation"
257//! [function call ABI]: ../primitive.fn.html#abi-compatibility
258//!
259//! # Method overview
260//!
261//! In addition to working with pattern matching, [`Result`] provides a
262//! wide variety of different methods.
263//!
264//! ## Querying the variant
265//!
266//! The [`is_ok`] and [`is_err`] methods return [`true`] if the [`Result`]
267//! is [`Ok`] or [`Err`], respectively.
268//!
269//! The [`is_ok_and`] and [`is_err_and`] methods apply the provided function
270//! to the contents of the [`Result`] to produce a boolean value. If the [`Result`] does not have the expected variant
271//! then [`false`] is returned instead without executing the function.
272//!
273//! [`is_err`]: Result::is_err
274//! [`is_ok`]: Result::is_ok
275//! [`is_ok_and`]: Result::is_ok_and
276//! [`is_err_and`]: Result::is_err_and
277//!
278//! ## Adapters for working with references
279//!
280//! * [`as_ref`] converts from `&Result<T, E>` to `Result<&T, &E>`
281//! * [`as_mut`] converts from `&mut Result<T, E>` to `Result<&mut T, &mut E>`
282//! * [`as_deref`] converts from `&Result<T, E>` to `Result<&T::Target, &E>`
283//! * [`as_deref_mut`] converts from `&mut Result<T, E>` to
284//!   `Result<&mut T::Target, &mut E>`
285//!
286//! [`as_deref`]: Result::as_deref
287//! [`as_deref_mut`]: Result::as_deref_mut
288//! [`as_mut`]: Result::as_mut
289//! [`as_ref`]: Result::as_ref
290//!
291//! ## Extracting contained values
292//!
293//! These methods extract the contained value in a [`Result<T, E>`] when it
294//! is the [`Ok`] variant. If the [`Result`] is [`Err`]:
295//!
296//! * [`expect`] panics with a provided custom message
297//! * [`unwrap`] panics with a generic message
298//! * [`unwrap_or`] returns the provided default value
299//! * [`unwrap_or_default`] returns the default value of the type `T`
300//!   (which must implement the [`Default`] trait)
301//! * [`unwrap_or_else`] returns the result of evaluating the provided
302//!   function
303//! * [`unwrap_unchecked`] produces *[undefined behavior]*
304//!
305//! The panicking methods [`expect`] and [`unwrap`] require `E` to
306//! implement the [`Debug`] trait.
307//!
308//! [`Debug`]: crate::fmt::Debug
309//! [`expect`]: Result::expect
310//! [`unwrap`]: Result::unwrap
311//! [`unwrap_or`]: Result::unwrap_or
312//! [`unwrap_or_default`]: Result::unwrap_or_default
313//! [`unwrap_or_else`]: Result::unwrap_or_else
314//! [`unwrap_unchecked`]: Result::unwrap_unchecked
315//! [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
316//!
317//! These methods extract the contained value in a [`Result<T, E>`] when it
318//! is the [`Err`] variant. They require `T` to implement the [`Debug`]
319//! trait. If the [`Result`] is [`Ok`]:
320//!
321//! * [`expect_err`] panics with a provided custom message
322//! * [`unwrap_err`] panics with a generic message
323//! * [`unwrap_err_unchecked`] produces *[undefined behavior]*
324//!
325//! [`Debug`]: crate::fmt::Debug
326//! [`expect_err`]: Result::expect_err
327//! [`unwrap_err`]: Result::unwrap_err
328//! [`unwrap_err_unchecked`]: Result::unwrap_err_unchecked
329//! [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
330//!
331//! ## Transforming contained values
332//!
333//! These methods transform [`Result`] to [`Option`]:
334//!
335//! * [`err`][Result::err] transforms [`Result<T, E>`] into [`Option<E>`],
336//!   mapping [`Err(e)`] to [`Some(e)`] and [`Ok(v)`] to [`None`]
337//! * [`ok`][Result::ok] transforms [`Result<T, E>`] into [`Option<T>`],
338//!   mapping [`Ok(v)`] to [`Some(v)`] and [`Err(e)`] to [`None`]
339//! * [`transpose`] transposes a [`Result`] of an [`Option`] into an
340//!   [`Option`] of a [`Result`]
341//!
342// Do NOT add link reference definitions for `err` or `ok`, because they
343// will generate numerous incorrect URLs for `Err` and `Ok` elsewhere, due
344// to case folding.
345//!
346//! [`Err(e)`]: Err
347//! [`Ok(v)`]: Ok
348//! [`Some(e)`]: Option::Some
349//! [`Some(v)`]: Option::Some
350//! [`transpose`]: Result::transpose
351//!
352//! These methods transform the contained value of the [`Ok`] variant:
353//!
354//! * [`map`] transforms [`Result<T, E>`] into [`Result<U, E>`] by applying
355//!   the provided function to the contained value of [`Ok`] and leaving
356//!   [`Err`] values unchanged
357//! * [`inspect`] takes ownership of the [`Result`], applies the
358//!   provided function to the contained value by reference,
359//!   and then returns the [`Result`]
360//!
361//! [`map`]: Result::map
362//! [`inspect`]: Result::inspect
363//!
364//! These methods transform the contained value of the [`Err`] variant:
365//!
366//! * [`map_err`] transforms [`Result<T, E>`] into [`Result<T, F>`] by
367//!   applying the provided function to the contained value of [`Err`] and
368//!   leaving [`Ok`] values unchanged
369//! * [`inspect_err`] takes ownership of the [`Result`], applies the
370//!   provided function to the contained value of [`Err`] by reference,
371//!   and then returns the [`Result`]
372//!
373//! [`map_err`]: Result::map_err
374//! [`inspect_err`]: Result::inspect_err
375//!
376//! These methods transform a [`Result<T, E>`] into a value of a possibly
377//! different type `U`:
378//!
379//! * [`map_or`] applies the provided function to the contained value of
380//!   [`Ok`], or returns the provided default value if the [`Result`] is
381//!   [`Err`]
382//! * [`map_or_else`] applies the provided function to the contained value
383//!   of [`Ok`], or applies the provided default fallback function to the
384//!   contained value of [`Err`]
385//!
386//! [`map_or`]: Result::map_or
387//! [`map_or_else`]: Result::map_or_else
388//!
389//! ## Boolean operators
390//!
391//! These methods treat the [`Result`] as a boolean value, where [`Ok`]
392//! acts like [`true`] and [`Err`] acts like [`false`]. There are two
393//! categories of these methods: ones that take a [`Result`] as input, and
394//! ones that take a function as input (to be lazily evaluated).
395//!
396//! The [`and`] and [`or`] methods take another [`Result`] as input, and
397//! produce a [`Result`] as output. The [`and`] method can produce a
398//! [`Result<U, E>`] value having a different inner type `U` than
399//! [`Result<T, E>`]. The [`or`] method can produce a [`Result<T, F>`]
400//! value having a different error type `F` than [`Result<T, E>`].
401//!
402//! | method  | self     | input     | output   |
403//! |---------|----------|-----------|----------|
404//! | [`and`] | `Err(e)` | (ignored) | `Err(e)` |
405//! | [`and`] | `Ok(x)`  | `Err(d)`  | `Err(d)` |
406//! | [`and`] | `Ok(x)`  | `Ok(y)`   | `Ok(y)`  |
407//! | [`or`]  | `Err(e)` | `Err(d)`  | `Err(d)` |
408//! | [`or`]  | `Err(e)` | `Ok(y)`   | `Ok(y)`  |
409//! | [`or`]  | `Ok(x)`  | (ignored) | `Ok(x)`  |
410//!
411//! [`and`]: Result::and
412//! [`or`]: Result::or
413//!
414//! The [`and_then`] and [`or_else`] methods take a function as input, and
415//! only evaluate the function when they need to produce a new value. The
416//! [`and_then`] method can produce a [`Result<U, E>`] value having a
417//! different inner type `U` than [`Result<T, E>`]. The [`or_else`] method
418//! can produce a [`Result<T, F>`] value having a different error type `F`
419//! than [`Result<T, E>`].
420//!
421//! | method       | self     | function input | function result | output   |
422//! |--------------|----------|----------------|-----------------|----------|
423//! | [`and_then`] | `Err(e)` | (not provided) | (not evaluated) | `Err(e)` |
424//! | [`and_then`] | `Ok(x)`  | `x`            | `Err(d)`        | `Err(d)` |
425//! | [`and_then`] | `Ok(x)`  | `x`            | `Ok(y)`         | `Ok(y)`  |
426//! | [`or_else`]  | `Err(e)` | `e`            | `Err(d)`        | `Err(d)` |
427//! | [`or_else`]  | `Err(e)` | `e`            | `Ok(y)`         | `Ok(y)`  |
428//! | [`or_else`]  | `Ok(x)`  | (not provided) | (not evaluated) | `Ok(x)`  |
429//!
430//! [`and_then`]: Result::and_then
431//! [`or_else`]: Result::or_else
432//!
433//! ## Comparison operators
434//!
435//! If `T` and `E` both implement [`PartialOrd`] then [`Result<T, E>`] will
436//! derive its [`PartialOrd`] implementation.  With this order, an [`Ok`]
437//! compares as less than any [`Err`], while two [`Ok`] or two [`Err`]
438//! compare as their contained values would in `T` or `E` respectively.  If `T`
439//! and `E` both also implement [`Ord`], then so does [`Result<T, E>`].
440//!
441//! ```
442//! assert!(Ok(1) < Err(0));
443//! let x: Result<i32, ()> = Ok(0);
444//! let y = Ok(1);
445//! assert!(x < y);
446//! let x: Result<(), i32> = Err(0);
447//! let y = Err(1);
448//! assert!(x < y);
449//! ```
450//!
451//! ## Iterating over `Result`
452//!
453//! A [`Result`] can be iterated over. This can be helpful if you need an
454//! iterator that is conditionally empty. The iterator will either produce
455//! a single value (when the [`Result`] is [`Ok`]), or produce no values
456//! (when the [`Result`] is [`Err`]). For example, [`into_iter`] acts like
457//! [`once(v)`] if the [`Result`] is [`Ok(v)`], and like [`empty()`] if the
458//! [`Result`] is [`Err`].
459//!
460//! [`Ok(v)`]: Ok
461//! [`empty()`]: crate::iter::empty
462//! [`once(v)`]: crate::iter::once
463//!
464//! Iterators over [`Result<T, E>`] come in three types:
465//!
466//! * [`into_iter`] consumes the [`Result`] and produces the contained
467//!   value
468//! * [`iter`] produces an immutable reference of type `&T` to the
469//!   contained value
470//! * [`iter_mut`] produces a mutable reference of type `&mut T` to the
471//!   contained value
472//!
473//! See [Iterating over `Option`] for examples of how this can be useful.
474//!
475//! [Iterating over `Option`]: crate::option#iterating-over-option
476//! [`into_iter`]: Result::into_iter
477//! [`iter`]: Result::iter
478//! [`iter_mut`]: Result::iter_mut
479//!
480//! You might want to use an iterator chain to do multiple instances of an
481//! operation that can fail, but would like to ignore failures while
482//! continuing to process the successful results. In this example, we take
483//! advantage of the iterable nature of [`Result`] to select only the
484//! [`Ok`] values using [`flatten`][Iterator::flatten].
485//!
486//! ```
487//! # use std::str::FromStr;
488//! let mut results = vec![];
489//! let mut errs = vec![];
490//! let nums: Vec<_> = ["17", "not a number", "99", "-27", "768"]
491//!    .into_iter()
492//!    .map(u8::from_str)
493//!    // Save clones of the raw `Result` values to inspect
494//!    .inspect(|x| results.push(x.clone()))
495//!    // Challenge: explain how this captures only the `Err` values
496//!    .inspect(|x| errs.extend(x.clone().err()))
497//!    .flatten()
498//!    .collect();
499//! assert_eq!(errs.len(), 3);
500//! assert_eq!(nums, [17, 99]);
501//! println!("results {results:?}");
502//! println!("errs {errs:?}");
503//! println!("nums {nums:?}");
504//! ```
505//!
506//! ## Collecting into `Result`
507//!
508//! [`Result`] implements the [`FromIterator`][impl-FromIterator] trait,
509//! which allows an iterator over [`Result`] values to be collected into a
510//! [`Result`] of a collection of each contained value of the original
511//! [`Result`] values, or [`Err`] if any of the elements was [`Err`].
512//!
513//! [impl-FromIterator]: Result#impl-FromIterator%3CResult%3CA,+E%3E%3E-for-Result%3CV,+E%3E
514//!
515//! ```
516//! let v = [Ok(2), Ok(4), Err("err!"), Ok(8)];
517//! let res: Result<Vec<_>, &str> = v.into_iter().collect();
518//! assert_eq!(res, Err("err!"));
519//! let v = [Ok(2), Ok(4), Ok(8)];
520//! let res: Result<Vec<_>, &str> = v.into_iter().collect();
521//! assert_eq!(res, Ok(vec![2, 4, 8]));
522//! ```
523//!
524//! [`Result`] also implements the [`Product`][impl-Product] and
525//! [`Sum`][impl-Sum] traits, allowing an iterator over [`Result`] values
526//! to provide the [`product`][Iterator::product] and
527//! [`sum`][Iterator::sum] methods.
528//!
529//! [impl-Product]: Result#impl-Product%3CResult%3CU,+E%3E%3E-for-Result%3CT,+E%3E
530//! [impl-Sum]: Result#impl-Sum%3CResult%3CU,+E%3E%3E-for-Result%3CT,+E%3E
531//!
532//! ```
533//! let v = [Err("error!"), Ok(1), Ok(2), Ok(3), Err("foo")];
534//! let res: Result<i32, &str> = v.into_iter().sum();
535//! assert_eq!(res, Err("error!"));
536//! let v = [Ok(1), Ok(2), Ok(21)];
537//! let res: Result<i32, &str> = v.into_iter().product();
538//! assert_eq!(res, Ok(42));
539//! ```
540
541#![stable(feature = "rust1", since = "1.0.0")]
542
543use crate::iter::{self, FusedIterator, TrustedLen};
544use crate::marker::Destruct;
545use crate::ops::{self, ControlFlow, Deref, DerefMut};
546use crate::{convert, fmt, hint};
547
548/// `Result` is a type that represents either success ([`Ok`]) or failure ([`Err`]).
549///
550/// See the [module documentation](self) for details.
551#[doc(search_unbox)]
552#[derive(Copy, Debug, Hash)]
553#[derive_const(PartialEq, PartialOrd, Eq, Ord)]
554#[must_use = "this `Result` may be an `Err` variant, which should be handled"]
555#[rustc_diagnostic_item = "Result"]
556#[stable(feature = "rust1", since = "1.0.0")]
557#[ferrocene::prevalidated]
558pub enum Result<T, E> {
559    /// Contains the success value
560    #[lang = "Ok"]
561    #[stable(feature = "rust1", since = "1.0.0")]
562    Ok(#[stable(feature = "rust1", since = "1.0.0")] T),
563
564    /// Contains the error value
565    #[lang = "Err"]
566    #[stable(feature = "rust1", since = "1.0.0")]
567    Err(#[stable(feature = "rust1", since = "1.0.0")] E),
568}
569
570/////////////////////////////////////////////////////////////////////////////
571// Type implementation
572/////////////////////////////////////////////////////////////////////////////
573
574impl<T, E> Result<T, E> {
575    /////////////////////////////////////////////////////////////////////////
576    // Querying the contained values
577    /////////////////////////////////////////////////////////////////////////
578
579    /// Returns `true` if the result is [`Ok`].
580    ///
581    /// # Examples
582    ///
583    /// ```
584    /// let x: Result<i32, &str> = Ok(-3);
585    /// assert_eq!(x.is_ok(), true);
586    ///
587    /// let x: Result<i32, &str> = Err("Some error message");
588    /// assert_eq!(x.is_ok(), false);
589    /// ```
590    #[must_use = "if you intended to assert that this is ok, consider `.unwrap()` instead"]
591    #[rustc_const_stable(feature = "const_result_basics", since = "1.48.0")]
592    #[inline]
593    #[stable(feature = "rust1", since = "1.0.0")]
594    #[ferrocene::prevalidated]
595    pub const fn is_ok(&self) -> bool {
596        matches!(*self, Ok(_))
597    }
598
599    /// Returns `true` if the result is [`Ok`] and the value inside of it matches a predicate.
600    ///
601    /// # Examples
602    ///
603    /// ```
604    /// let x: Result<u32, &str> = Ok(2);
605    /// assert_eq!(x.is_ok_and(|x| x > 1), true);
606    ///
607    /// let x: Result<u32, &str> = Ok(0);
608    /// assert_eq!(x.is_ok_and(|x| x > 1), false);
609    ///
610    /// let x: Result<u32, &str> = Err("hey");
611    /// assert_eq!(x.is_ok_and(|x| x > 1), false);
612    ///
613    /// let x: Result<String, &str> = Ok("ownership".to_string());
614    /// assert_eq!(x.as_ref().is_ok_and(|x| x.len() > 1), true);
615    /// println!("still alive {:?}", x);
616    /// ```
617    #[must_use]
618    #[inline]
619    #[stable(feature = "is_some_and", since = "1.70.0")]
620    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
621    #[ferrocene::prevalidated]
622    pub const fn is_ok_and<F>(self, f: F) -> bool
623    where
624        F: [const] FnOnce(T) -> bool + [const] Destruct,
625        T: [const] Destruct,
626        E: [const] Destruct,
627    {
628        match self {
629            Err(_) => false,
630            Ok(x) => f(x),
631        }
632    }
633
634    /// Returns `true` if the result is [`Err`].
635    ///
636    /// # Examples
637    ///
638    /// ```
639    /// let x: Result<i32, &str> = Ok(-3);
640    /// assert_eq!(x.is_err(), false);
641    ///
642    /// let x: Result<i32, &str> = Err("Some error message");
643    /// assert_eq!(x.is_err(), true);
644    /// ```
645    #[must_use = "if you intended to assert that this is err, consider `.unwrap_err()` instead"]
646    #[rustc_const_stable(feature = "const_result_basics", since = "1.48.0")]
647    #[inline]
648    #[stable(feature = "rust1", since = "1.0.0")]
649    #[ferrocene::prevalidated]
650    pub const fn is_err(&self) -> bool {
651        !self.is_ok()
652    }
653
654    /// Returns `true` if the result is [`Err`] and the value inside of it matches a predicate.
655    ///
656    /// # Examples
657    ///
658    /// ```
659    /// use std::io::{Error, ErrorKind};
660    ///
661    /// let x: Result<u32, Error> = Err(Error::new(ErrorKind::NotFound, "!"));
662    /// assert_eq!(x.is_err_and(|x| x.kind() == ErrorKind::NotFound), true);
663    ///
664    /// let x: Result<u32, Error> = Err(Error::new(ErrorKind::PermissionDenied, "!"));
665    /// assert_eq!(x.is_err_and(|x| x.kind() == ErrorKind::NotFound), false);
666    ///
667    /// let x: Result<u32, Error> = Ok(123);
668    /// assert_eq!(x.is_err_and(|x| x.kind() == ErrorKind::NotFound), false);
669    ///
670    /// let x: Result<u32, String> = Err("ownership".to_string());
671    /// assert_eq!(x.as_ref().is_err_and(|x| x.len() > 1), true);
672    /// println!("still alive {:?}", x);
673    /// ```
674    #[must_use]
675    #[inline]
676    #[stable(feature = "is_some_and", since = "1.70.0")]
677    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
678    #[ferrocene::prevalidated]
679    pub const fn is_err_and<F>(self, f: F) -> bool
680    where
681        F: [const] FnOnce(E) -> bool + [const] Destruct,
682        E: [const] Destruct,
683        T: [const] Destruct,
684    {
685        match self {
686            Ok(_) => false,
687            Err(e) => f(e),
688        }
689    }
690
691    /////////////////////////////////////////////////////////////////////////
692    // Adapter for each variant
693    /////////////////////////////////////////////////////////////////////////
694
695    /// Converts from `Result<T, E>` to [`Option<T>`].
696    ///
697    /// Converts `self` into an [`Option<T>`], consuming `self`,
698    /// and converting the error to `None`, if any.
699    ///
700    /// # Examples
701    ///
702    /// ```
703    /// let x: Result<u32, &str> = Ok(2);
704    /// assert_eq!(x.ok(), Some(2));
705    ///
706    /// let x: Result<u32, &str> = Err("Nothing here");
707    /// assert_eq!(x.ok(), None);
708    /// ```
709    #[inline]
710    #[stable(feature = "rust1", since = "1.0.0")]
711    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
712    #[rustc_diagnostic_item = "result_ok_method"]
713    #[ferrocene::prevalidated]
714    pub const fn ok(self) -> Option<T>
715    where
716        T: [const] Destruct,
717        E: [const] Destruct,
718    {
719        match self {
720            Ok(x) => Some(x),
721            Err(_) => None,
722        }
723    }
724
725    /// Converts from `Result<T, E>` to [`Option<E>`].
726    ///
727    /// Converts `self` into an [`Option<E>`], consuming `self`,
728    /// and discarding the success value, if any.
729    ///
730    /// # Examples
731    ///
732    /// ```
733    /// let x: Result<u32, &str> = Ok(2);
734    /// assert_eq!(x.err(), None);
735    ///
736    /// let x: Result<u32, &str> = Err("Nothing here");
737    /// assert_eq!(x.err(), Some("Nothing here"));
738    /// ```
739    #[inline]
740    #[stable(feature = "rust1", since = "1.0.0")]
741    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
742    #[ferrocene::prevalidated]
743    pub const fn err(self) -> Option<E>
744    where
745        T: [const] Destruct,
746        E: [const] Destruct,
747    {
748        match self {
749            Ok(_) => None,
750            Err(x) => Some(x),
751        }
752    }
753
754    /////////////////////////////////////////////////////////////////////////
755    // Adapter for working with references
756    /////////////////////////////////////////////////////////////////////////
757
758    /// Converts from `&Result<T, E>` to `Result<&T, &E>`.
759    ///
760    /// Produces a new `Result`, containing a reference
761    /// into the original, leaving the original in place.
762    ///
763    /// # Examples
764    ///
765    /// ```
766    /// let x: Result<u32, &str> = Ok(2);
767    /// assert_eq!(x.as_ref(), Ok(&2));
768    ///
769    /// let x: Result<u32, &str> = Err("Error");
770    /// assert_eq!(x.as_ref(), Err(&"Error"));
771    /// ```
772    #[inline]
773    #[rustc_const_stable(feature = "const_result_basics", since = "1.48.0")]
774    #[stable(feature = "rust1", since = "1.0.0")]
775    #[ferrocene::prevalidated]
776    pub const fn as_ref(&self) -> Result<&T, &E> {
777        match *self {
778            Ok(ref x) => Ok(x),
779            Err(ref x) => Err(x),
780        }
781    }
782
783    /// Converts from `&mut Result<T, E>` to `Result<&mut T, &mut E>`.
784    ///
785    /// # Examples
786    ///
787    /// ```
788    /// fn mutate(r: &mut Result<i32, i32>) {
789    ///     match r.as_mut() {
790    ///         Ok(v) => *v = 42,
791    ///         Err(e) => *e = 0,
792    ///     }
793    /// }
794    ///
795    /// let mut x: Result<i32, i32> = Ok(2);
796    /// mutate(&mut x);
797    /// assert_eq!(x.unwrap(), 42);
798    ///
799    /// let mut x: Result<i32, i32> = Err(13);
800    /// mutate(&mut x);
801    /// assert_eq!(x.unwrap_err(), 0);
802    /// ```
803    #[inline]
804    #[stable(feature = "rust1", since = "1.0.0")]
805    #[rustc_const_stable(feature = "const_result", since = "1.83.0")]
806    #[ferrocene::prevalidated]
807    pub const fn as_mut(&mut self) -> Result<&mut T, &mut E> {
808        match *self {
809            Ok(ref mut x) => Ok(x),
810            Err(ref mut x) => Err(x),
811        }
812    }
813
814    /////////////////////////////////////////////////////////////////////////
815    // Transforming contained values
816    /////////////////////////////////////////////////////////////////////////
817
818    /// Maps a `Result<T, E>` to `Result<U, E>` by applying a function to a
819    /// contained [`Ok`] value, leaving an [`Err`] value untouched.
820    ///
821    /// This function can be used to compose the results of two functions.
822    ///
823    /// # Examples
824    ///
825    /// Print the numbers on each line of a string multiplied by two.
826    ///
827    /// ```
828    /// let line = "1\n2\n3\n4\n";
829    ///
830    /// for num in line.lines() {
831    ///     match num.parse::<i32>().map(|i| i * 2) {
832    ///         Ok(n) => println!("{n}"),
833    ///         Err(..) => {}
834    ///     }
835    /// }
836    /// ```
837    #[inline]
838    #[stable(feature = "rust1", since = "1.0.0")]
839    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
840    #[ferrocene::prevalidated]
841    pub const fn map<U, F>(self, op: F) -> Result<U, E>
842    where
843        F: [const] FnOnce(T) -> U + [const] Destruct,
844    {
845        match self {
846            Ok(t) => Ok(op(t)),
847            Err(e) => Err(e),
848        }
849    }
850
851    /// Returns the provided default (if [`Err`]), or
852    /// applies a function to the contained value (if [`Ok`]).
853    ///
854    /// Arguments passed to `map_or` are eagerly evaluated; if you are passing
855    /// the result of a function call, it is recommended to use [`map_or_else`],
856    /// which is lazily evaluated.
857    ///
858    /// [`map_or_else`]: Result::map_or_else
859    ///
860    /// # Examples
861    ///
862    /// ```
863    /// let x: Result<_, &str> = Ok("foo");
864    /// assert_eq!(x.map_or(42, |v| v.len()), 3);
865    ///
866    /// let x: Result<&str, _> = Err("bar");
867    /// assert_eq!(x.map_or(42, |v| v.len()), 42);
868    /// ```
869    #[inline]
870    #[stable(feature = "result_map_or", since = "1.41.0")]
871    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
872    #[must_use = "if you don't need the returned value, use `if let` instead"]
873    #[ferrocene::prevalidated]
874    pub const fn map_or<U, F>(self, default: U, f: F) -> U
875    where
876        F: [const] FnOnce(T) -> U + [const] Destruct,
877        T: [const] Destruct,
878        E: [const] Destruct,
879        U: [const] Destruct,
880    {
881        match self {
882            Ok(t) => f(t),
883            Err(_) => default,
884        }
885    }
886
887    /// Maps a `Result<T, E>` to `U` by applying fallback function `default` to
888    /// a contained [`Err`] value, or function `f` to a contained [`Ok`] value.
889    ///
890    /// This function can be used to unpack a successful result
891    /// while handling an error.
892    ///
893    ///
894    /// # Examples
895    ///
896    /// ```
897    /// let k = 21;
898    ///
899    /// let x : Result<_, &str> = Ok("foo");
900    /// assert_eq!(x.map_or_else(|e| k * 2, |v| v.len()), 3);
901    ///
902    /// let x : Result<&str, _> = Err("bar");
903    /// assert_eq!(x.map_or_else(|e| k * 2, |v| v.len()), 42);
904    /// ```
905    #[inline]
906    #[stable(feature = "result_map_or_else", since = "1.41.0")]
907    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
908    #[ferrocene::prevalidated]
909    pub const fn map_or_else<U, D, F>(self, default: D, f: F) -> U
910    where
911        D: [const] FnOnce(E) -> U + [const] Destruct,
912        F: [const] FnOnce(T) -> U + [const] Destruct,
913    {
914        match self {
915            Ok(t) => f(t),
916            Err(e) => default(e),
917        }
918    }
919
920    /// Maps a `Result<T, E>` to a `U` by applying function `f` to the contained
921    /// value if the result is [`Ok`], otherwise if [`Err`], returns the
922    /// [default value] for the type `U`.
923    ///
924    /// # Examples
925    ///
926    /// ```
927    /// #![feature(result_option_map_or_default)]
928    ///
929    /// let x: Result<_, &str> = Ok("foo");
930    /// let y: Result<&str, _> = Err("bar");
931    ///
932    /// assert_eq!(x.map_or_default(|x| x.len()), 3);
933    /// assert_eq!(y.map_or_default(|y| y.len()), 0);
934    /// ```
935    ///
936    /// [default value]: Default::default
937    #[inline]
938    #[unstable(feature = "result_option_map_or_default", issue = "138099")]
939    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
940    #[ferrocene::prevalidated]
941    pub const fn map_or_default<U, F>(self, f: F) -> U
942    where
943        F: [const] FnOnce(T) -> U + [const] Destruct,
944        U: [const] Default,
945        T: [const] Destruct,
946        E: [const] Destruct,
947    {
948        match self {
949            Ok(t) => f(t),
950            Err(_) => U::default(),
951        }
952    }
953
954    /// Maps a `Result<T, E>` to `Result<T, F>` by applying a function to a
955    /// contained [`Err`] value, leaving an [`Ok`] value untouched.
956    ///
957    /// This function can be used to pass through a successful result while handling
958    /// an error.
959    ///
960    ///
961    /// # Examples
962    ///
963    /// ```
964    /// fn stringify(x: u32) -> String { format!("error code: {x}") }
965    ///
966    /// let x: Result<u32, u32> = Ok(2);
967    /// assert_eq!(x.map_err(stringify), Ok(2));
968    ///
969    /// let x: Result<u32, u32> = Err(13);
970    /// assert_eq!(x.map_err(stringify), Err("error code: 13".to_string()));
971    /// ```
972    #[inline]
973    #[stable(feature = "rust1", since = "1.0.0")]
974    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
975    #[ferrocene::prevalidated]
976    pub const fn map_err<F, O>(self, op: O) -> Result<T, F>
977    where
978        O: [const] FnOnce(E) -> F + [const] Destruct,
979    {
980        match self {
981            Ok(t) => Ok(t),
982            Err(e) => Err(op(e)),
983        }
984    }
985
986    /// Calls a function with a reference to the contained value if [`Ok`].
987    ///
988    /// Returns the original result.
989    ///
990    /// # Examples
991    ///
992    /// ```
993    /// let x: u8 = "4"
994    ///     .parse::<u8>()
995    ///     .inspect(|x| println!("original: {x}"))
996    ///     .map(|x| x.pow(3))
997    ///     .expect("failed to parse number");
998    /// ```
999    #[inline]
1000    #[stable(feature = "result_option_inspect", since = "1.76.0")]
1001    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
1002    #[ferrocene::prevalidated]
1003    pub const fn inspect<F>(self, f: F) -> Self
1004    where
1005        F: [const] FnOnce(&T) + [const] Destruct,
1006    {
1007        if let Ok(ref t) = self {
1008            f(t);
1009        }
1010
1011        self
1012    }
1013
1014    /// Calls a function with a reference to the contained value if [`Err`].
1015    ///
1016    /// Returns the original result.
1017    ///
1018    /// # Examples
1019    ///
1020    /// ```
1021    /// use std::{fs, io};
1022    ///
1023    /// fn read() -> io::Result<String> {
1024    ///     fs::read_to_string("address.txt")
1025    ///         .inspect_err(|e| eprintln!("failed to read file: {e}"))
1026    /// }
1027    /// ```
1028    #[inline]
1029    #[stable(feature = "result_option_inspect", since = "1.76.0")]
1030    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
1031    #[ferrocene::prevalidated]
1032    pub const fn inspect_err<F>(self, f: F) -> Self
1033    where
1034        F: [const] FnOnce(&E) + [const] Destruct,
1035    {
1036        if let Err(ref e) = self {
1037            f(e);
1038        }
1039
1040        self
1041    }
1042
1043    /// Converts from `Result<T, E>` (or `&Result<T, E>`) to `Result<&<T as Deref>::Target, &E>`.
1044    ///
1045    /// Coerces the [`Ok`] variant of the original [`Result`] via [`Deref`](crate::ops::Deref)
1046    /// and returns the new [`Result`].
1047    ///
1048    /// # Examples
1049    ///
1050    /// ```
1051    /// let x: Result<String, u32> = Ok("hello".to_string());
1052    /// let y: Result<&str, &u32> = Ok("hello");
1053    /// assert_eq!(x.as_deref(), y);
1054    ///
1055    /// let x: Result<String, u32> = Err(42);
1056    /// let y: Result<&str, &u32> = Err(&42);
1057    /// assert_eq!(x.as_deref(), y);
1058    /// ```
1059    #[inline]
1060    #[stable(feature = "inner_deref", since = "1.47.0")]
1061    #[rustc_const_unstable(feature = "const_convert", issue = "143773")]
1062    #[ferrocene::prevalidated]
1063    pub const fn as_deref(&self) -> Result<&T::Target, &E>
1064    where
1065        T: [const] Deref,
1066    {
1067        self.as_ref().map(Deref::deref)
1068    }
1069
1070    /// Converts from `Result<T, E>` (or `&mut Result<T, E>`) to `Result<&mut <T as DerefMut>::Target, &mut E>`.
1071    ///
1072    /// Coerces the [`Ok`] variant of the original [`Result`] via [`DerefMut`](crate::ops::DerefMut)
1073    /// and returns the new [`Result`].
1074    ///
1075    /// # Examples
1076    ///
1077    /// ```
1078    /// let mut s = "HELLO".to_string();
1079    /// let mut x: Result<String, u32> = Ok("hello".to_string());
1080    /// let y: Result<&mut str, &mut u32> = Ok(&mut s);
1081    /// assert_eq!(x.as_deref_mut().map(|x| { x.make_ascii_uppercase(); x }), y);
1082    ///
1083    /// let mut i = 42;
1084    /// let mut x: Result<String, u32> = Err(42);
1085    /// let y: Result<&mut str, &mut u32> = Err(&mut i);
1086    /// assert_eq!(x.as_deref_mut().map(|x| { x.make_ascii_uppercase(); x }), y);
1087    /// ```
1088    #[inline]
1089    #[stable(feature = "inner_deref", since = "1.47.0")]
1090    #[rustc_const_unstable(feature = "const_convert", issue = "143773")]
1091    #[ferrocene::prevalidated]
1092    pub const fn as_deref_mut(&mut self) -> Result<&mut T::Target, &mut E>
1093    where
1094        T: [const] DerefMut,
1095    {
1096        self.as_mut().map(DerefMut::deref_mut)
1097    }
1098
1099    /////////////////////////////////////////////////////////////////////////
1100    // Iterator constructors
1101    /////////////////////////////////////////////////////////////////////////
1102
1103    /// Returns an iterator over the possibly contained value.
1104    ///
1105    /// The iterator yields one value if the result is [`Result::Ok`], otherwise none.
1106    ///
1107    /// # Examples
1108    ///
1109    /// ```
1110    /// let x: Result<u32, &str> = Ok(7);
1111    /// assert_eq!(x.iter().next(), Some(&7));
1112    ///
1113    /// let x: Result<u32, &str> = Err("nothing!");
1114    /// assert_eq!(x.iter().next(), None);
1115    /// ```
1116    #[inline]
1117    #[stable(feature = "rust1", since = "1.0.0")]
1118    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
1119    // Ferrocene: blocked on Iterator
1120    pub const fn iter(&self) -> Iter<'_, T> {
1121        Iter { inner: self.as_ref().ok() }
1122    }
1123
1124    /// Returns a mutable iterator over the possibly contained value.
1125    ///
1126    /// The iterator yields one value if the result is [`Result::Ok`], otherwise none.
1127    ///
1128    /// # Examples
1129    ///
1130    /// ```
1131    /// let mut x: Result<u32, &str> = Ok(7);
1132    /// match x.iter_mut().next() {
1133    ///     Some(v) => *v = 40,
1134    ///     None => {},
1135    /// }
1136    /// assert_eq!(x, Ok(40));
1137    ///
1138    /// let mut x: Result<u32, &str> = Err("nothing!");
1139    /// assert_eq!(x.iter_mut().next(), None);
1140    /// ```
1141    #[inline]
1142    #[stable(feature = "rust1", since = "1.0.0")]
1143    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
1144    // Ferrocene: blocked on Iterator
1145    pub const fn iter_mut(&mut self) -> IterMut<'_, T> {
1146        IterMut { inner: self.as_mut().ok() }
1147    }
1148
1149    /////////////////////////////////////////////////////////////////////////
1150    // Extract a value
1151    /////////////////////////////////////////////////////////////////////////
1152
1153    /// Returns the contained [`Ok`] value, consuming the `self` value.
1154    ///
1155    /// Because this function may panic, its use is generally discouraged.
1156    /// Instead, prefer to use pattern matching and handle the [`Err`]
1157    /// case explicitly, or call [`unwrap_or`], [`unwrap_or_else`], or
1158    /// [`unwrap_or_default`].
1159    ///
1160    /// [`unwrap_or`]: Result::unwrap_or
1161    /// [`unwrap_or_else`]: Result::unwrap_or_else
1162    /// [`unwrap_or_default`]: Result::unwrap_or_default
1163    ///
1164    /// # Panics
1165    ///
1166    /// Panics if the value is an [`Err`], with a panic message including the
1167    /// passed message, and the content of the [`Err`].
1168    ///
1169    ///
1170    /// # Examples
1171    ///
1172    /// ```should_panic
1173    /// let x: Result<u32, &str> = Err("emergency failure");
1174    /// x.expect("Testing expect"); // panics with `Testing expect: emergency failure`
1175    /// ```
1176    ///
1177    /// # Recommended Message Style
1178    ///
1179    /// We recommend that `expect` messages are used to describe the reason you
1180    /// _expect_ the `Result` should be `Ok`.
1181    ///
1182    /// ```should_panic
1183    /// let path = std::env::var("IMPORTANT_PATH")
1184    ///     .expect("env variable `IMPORTANT_PATH` should be set by `wrapper_script.sh`");
1185    /// ```
1186    ///
1187    /// **Hint**: If you're having trouble remembering how to phrase expect
1188    /// error messages remember to focus on the word "should" as in "env
1189    /// variable should be set by blah" or "the given binary should be available
1190    /// and executable by the current user".
1191    ///
1192    /// For more detail on expect message styles and the reasoning behind our recommendation please
1193    /// refer to the section on ["Common Message
1194    /// Styles"](../../std/error/index.html#common-message-styles) in the
1195    /// [`std::error`](../../std/error/index.html) module docs.
1196    #[inline]
1197    #[track_caller]
1198    #[stable(feature = "result_expect", since = "1.4.0")]
1199    #[ferrocene::prevalidated]
1200    pub fn expect(self, msg: &str) -> T
1201    where
1202        E: fmt::Debug,
1203    {
1204        match self {
1205            Ok(t) => t,
1206            Err(e) => unwrap_failed(msg, &e),
1207        }
1208    }
1209
1210    /// Returns the contained [`Ok`] value, consuming the `self` value.
1211    ///
1212    /// Because this function may panic, its use is generally discouraged.
1213    /// Panics are meant for unrecoverable errors, and
1214    /// [may abort the entire program][panic-abort].
1215    ///
1216    /// Instead, prefer to use [the `?` (try) operator][try-operator], or pattern matching
1217    /// to handle the [`Err`] case explicitly, or call [`unwrap_or`],
1218    /// [`unwrap_or_else`], or [`unwrap_or_default`].
1219    ///
1220    /// [panic-abort]: https://doc.rust-lang.org/book/ch09-01-unrecoverable-errors-with-panic.html
1221    /// [try-operator]: https://doc.rust-lang.org/book/ch09-02-recoverable-errors-with-result.html#a-shortcut-for-propagating-errors-the--operator
1222    /// [`unwrap_or`]: Result::unwrap_or
1223    /// [`unwrap_or_else`]: Result::unwrap_or_else
1224    /// [`unwrap_or_default`]: Result::unwrap_or_default
1225    ///
1226    /// # Panics
1227    ///
1228    /// Panics if the value is an [`Err`], with a panic message provided by the
1229    /// [`Err`]'s value.
1230    ///
1231    ///
1232    /// # Examples
1233    ///
1234    /// Basic usage:
1235    ///
1236    /// ```
1237    /// let x: Result<u32, &str> = Ok(2);
1238    /// assert_eq!(x.unwrap(), 2);
1239    /// ```
1240    ///
1241    /// ```should_panic
1242    /// let x: Result<u32, &str> = Err("emergency failure");
1243    /// x.unwrap(); // panics with `emergency failure`
1244    /// ```
1245    #[inline(always)]
1246    #[track_caller]
1247    #[stable(feature = "rust1", since = "1.0.0")]
1248    #[ferrocene::prevalidated]
1249    pub fn unwrap(self) -> T
1250    where
1251        E: fmt::Debug,
1252    {
1253        match self {
1254            Ok(t) => t,
1255            Err(e) => unwrap_failed("called `Result::unwrap()` on an `Err` value", &e),
1256        }
1257    }
1258
1259    /// Returns the contained [`Ok`] value or a default
1260    ///
1261    /// Consumes the `self` argument then, if [`Ok`], returns the contained
1262    /// value, otherwise if [`Err`], returns the default value for that
1263    /// type.
1264    ///
1265    /// # Examples
1266    ///
1267    /// Converts a string to an integer, turning poorly-formed strings
1268    /// into 0 (the default value for integers). [`parse`] converts
1269    /// a string to any other type that implements [`FromStr`], returning an
1270    /// [`Err`] on error.
1271    ///
1272    /// ```
1273    /// let good_year_from_input = "1909";
1274    /// let bad_year_from_input = "190blarg";
1275    /// let good_year = good_year_from_input.parse().unwrap_or_default();
1276    /// let bad_year = bad_year_from_input.parse().unwrap_or_default();
1277    ///
1278    /// assert_eq!(1909, good_year);
1279    /// assert_eq!(0, bad_year);
1280    /// ```
1281    ///
1282    /// [`parse`]: str::parse
1283    /// [`FromStr`]: crate::str::FromStr
1284    #[inline]
1285    #[stable(feature = "result_unwrap_or_default", since = "1.16.0")]
1286    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
1287    #[ferrocene::prevalidated]
1288    pub const fn unwrap_or_default(self) -> T
1289    where
1290        T: [const] Default + [const] Destruct,
1291        E: [const] Destruct,
1292    {
1293        match self {
1294            Ok(x) => x,
1295            Err(_) => Default::default(),
1296        }
1297    }
1298
1299    /// Returns the contained [`Err`] value, consuming the `self` value.
1300    ///
1301    /// # Panics
1302    ///
1303    /// Panics if the value is an [`Ok`], with a panic message including the
1304    /// passed message, and the content of the [`Ok`].
1305    ///
1306    ///
1307    /// # Examples
1308    ///
1309    /// ```should_panic
1310    /// let x: Result<u32, &str> = Ok(10);
1311    /// x.expect_err("Testing expect_err"); // panics with `Testing expect_err: 10`
1312    /// ```
1313    #[inline]
1314    #[track_caller]
1315    #[stable(feature = "result_expect_err", since = "1.17.0")]
1316    // Ferrocene: blocked on Debug
1317    pub fn expect_err(self, msg: &str) -> E
1318    where
1319        T: fmt::Debug,
1320    {
1321        match self {
1322            Ok(t) => unwrap_failed(msg, &t),
1323            Err(e) => e,
1324        }
1325    }
1326
1327    /// Returns the contained [`Err`] value, consuming the `self` value.
1328    ///
1329    /// # Panics
1330    ///
1331    /// Panics if the value is an [`Ok`], with a custom panic message provided
1332    /// by the [`Ok`]'s value.
1333    ///
1334    /// # Examples
1335    ///
1336    /// ```should_panic
1337    /// let x: Result<u32, &str> = Ok(2);
1338    /// x.unwrap_err(); // panics with `2`
1339    /// ```
1340    ///
1341    /// ```
1342    /// let x: Result<u32, &str> = Err("emergency failure");
1343    /// assert_eq!(x.unwrap_err(), "emergency failure");
1344    /// ```
1345    #[inline]
1346    #[track_caller]
1347    #[stable(feature = "rust1", since = "1.0.0")]
1348    // Ferrocene: blocked on Debug
1349    pub fn unwrap_err(self) -> E
1350    where
1351        T: fmt::Debug,
1352    {
1353        match self {
1354            Ok(t) => unwrap_failed("called `Result::unwrap_err()` on an `Ok` value", &t),
1355            Err(e) => e,
1356        }
1357    }
1358
1359    /// Returns the contained [`Ok`] value, but never panics.
1360    ///
1361    /// Unlike [`unwrap`], this method is known to never panic on the
1362    /// result types it is implemented for. Therefore, it can be used
1363    /// instead of `unwrap` as a maintainability safeguard that will fail
1364    /// to compile if the error type of the `Result` is later changed
1365    /// to an error that can actually occur.
1366    ///
1367    /// [`unwrap`]: Result::unwrap
1368    ///
1369    /// # Examples
1370    ///
1371    /// ```
1372    /// # #![feature(never_type)]
1373    /// # #![feature(unwrap_infallible)]
1374    ///
1375    /// fn only_good_news() -> Result<String, !> {
1376    ///     Ok("this is fine".into())
1377    /// }
1378    ///
1379    /// let s: String = only_good_news().into_ok();
1380    /// println!("{s}");
1381    /// ```
1382    #[unstable(feature = "unwrap_infallible", issue = "61695")]
1383    #[inline]
1384    #[rustc_allow_const_fn_unstable(const_precise_live_drops)]
1385    #[rustc_const_unstable(feature = "const_convert", issue = "143773")]
1386    // Ferrocene: blocked on !
1387    pub const fn into_ok(self) -> T
1388    where
1389        E: [const] Into<!>,
1390    {
1391        match self {
1392            Ok(x) => x,
1393            Err(e) => e.into(),
1394        }
1395    }
1396
1397    /// Returns the contained [`Err`] value, but never panics.
1398    ///
1399    /// Unlike [`unwrap_err`], this method is known to never panic on the
1400    /// result types it is implemented for. Therefore, it can be used
1401    /// instead of `unwrap_err` as a maintainability safeguard that will fail
1402    /// to compile if the ok type of the `Result` is later changed
1403    /// to a type that can actually occur.
1404    ///
1405    /// [`unwrap_err`]: Result::unwrap_err
1406    ///
1407    /// # Examples
1408    ///
1409    /// ```
1410    /// # #![feature(never_type)]
1411    /// # #![feature(unwrap_infallible)]
1412    ///
1413    /// fn only_bad_news() -> Result<!, String> {
1414    ///     Err("Oops, it failed".into())
1415    /// }
1416    ///
1417    /// let error: String = only_bad_news().into_err();
1418    /// println!("{error}");
1419    /// ```
1420    #[unstable(feature = "unwrap_infallible", issue = "61695")]
1421    #[inline]
1422    #[rustc_allow_const_fn_unstable(const_precise_live_drops)]
1423    #[rustc_const_unstable(feature = "const_convert", issue = "143773")]
1424    // Ferrocene: blocked on !
1425    pub const fn into_err(self) -> E
1426    where
1427        T: [const] Into<!>,
1428    {
1429        match self {
1430            Ok(x) => x.into(),
1431            Err(e) => e,
1432        }
1433    }
1434
1435    ////////////////////////////////////////////////////////////////////////
1436    // Boolean operations on the values, eager and lazy
1437    /////////////////////////////////////////////////////////////////////////
1438
1439    /// Returns `res` if the result is [`Ok`], otherwise returns the [`Err`] value of `self`.
1440    ///
1441    /// Arguments passed to `and` are eagerly evaluated; if you are passing the
1442    /// result of a function call, it is recommended to use [`and_then`], which is
1443    /// lazily evaluated.
1444    ///
1445    /// [`and_then`]: Result::and_then
1446    ///
1447    /// # Examples
1448    ///
1449    /// ```
1450    /// let x: Result<u32, &str> = Ok(2);
1451    /// let y: Result<&str, &str> = Err("late error");
1452    /// assert_eq!(x.and(y), Err("late error"));
1453    ///
1454    /// let x: Result<u32, &str> = Err("early error");
1455    /// let y: Result<&str, &str> = Ok("foo");
1456    /// assert_eq!(x.and(y), Err("early error"));
1457    ///
1458    /// let x: Result<u32, &str> = Err("not a 2");
1459    /// let y: Result<&str, &str> = Err("late error");
1460    /// assert_eq!(x.and(y), Err("not a 2"));
1461    ///
1462    /// let x: Result<u32, &str> = Ok(2);
1463    /// let y: Result<&str, &str> = Ok("different result type");
1464    /// assert_eq!(x.and(y), Ok("different result type"));
1465    /// ```
1466    #[inline]
1467    #[stable(feature = "rust1", since = "1.0.0")]
1468    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
1469    #[ferrocene::prevalidated]
1470    pub const fn and<U>(self, res: Result<U, E>) -> Result<U, E>
1471    where
1472        T: [const] Destruct,
1473        E: [const] Destruct,
1474        U: [const] Destruct,
1475    {
1476        match self {
1477            Ok(_) => res,
1478            Err(e) => Err(e),
1479        }
1480    }
1481
1482    /// Calls `op` if the result is [`Ok`], otherwise returns the [`Err`] value of `self`.
1483    ///
1484    ///
1485    /// This function can be used for control flow based on `Result` values.
1486    ///
1487    /// # Examples
1488    ///
1489    /// ```
1490    /// fn sq_then_to_string(x: u32) -> Result<String, &'static str> {
1491    ///     x.checked_mul(x).map(|sq| sq.to_string()).ok_or("overflowed")
1492    /// }
1493    ///
1494    /// assert_eq!(Ok(2).and_then(sq_then_to_string), Ok(4.to_string()));
1495    /// assert_eq!(Ok(1_000_000).and_then(sq_then_to_string), Err("overflowed"));
1496    /// assert_eq!(Err("not a number").and_then(sq_then_to_string), Err("not a number"));
1497    /// ```
1498    ///
1499    /// Often used to chain fallible operations that may return [`Err`].
1500    ///
1501    /// ```
1502    /// use std::{io::ErrorKind, path::Path};
1503    ///
1504    /// // Note: on Windows "/" maps to "C:\"
1505    /// let root_modified_time = Path::new("/").metadata().and_then(|md| md.modified());
1506    /// assert!(root_modified_time.is_ok());
1507    ///
1508    /// let should_fail = Path::new("/bad/path").metadata().and_then(|md| md.modified());
1509    /// assert!(should_fail.is_err());
1510    /// assert_eq!(should_fail.unwrap_err().kind(), ErrorKind::NotFound);
1511    /// ```
1512    #[inline]
1513    #[stable(feature = "rust1", since = "1.0.0")]
1514    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
1515    #[rustc_confusables("flat_map", "flatmap")]
1516    #[ferrocene::prevalidated]
1517    pub const fn and_then<U, F>(self, op: F) -> Result<U, E>
1518    where
1519        F: [const] FnOnce(T) -> Result<U, E> + [const] Destruct,
1520    {
1521        match self {
1522            Ok(t) => op(t),
1523            Err(e) => Err(e),
1524        }
1525    }
1526
1527    /// Returns `res` if the result is [`Err`], otherwise returns the [`Ok`] value of `self`.
1528    ///
1529    /// Arguments passed to `or` are eagerly evaluated; if you are passing the
1530    /// result of a function call, it is recommended to use [`or_else`], which is
1531    /// lazily evaluated.
1532    ///
1533    /// [`or_else`]: Result::or_else
1534    ///
1535    /// # Examples
1536    ///
1537    /// ```
1538    /// let x: Result<u32, &str> = Ok(2);
1539    /// let y: Result<u32, &str> = Err("late error");
1540    /// assert_eq!(x.or(y), Ok(2));
1541    ///
1542    /// let x: Result<u32, &str> = Err("early error");
1543    /// let y: Result<u32, &str> = Ok(2);
1544    /// assert_eq!(x.or(y), Ok(2));
1545    ///
1546    /// let x: Result<u32, &str> = Err("not a 2");
1547    /// let y: Result<u32, &str> = Err("late error");
1548    /// assert_eq!(x.or(y), Err("late error"));
1549    ///
1550    /// let x: Result<u32, &str> = Ok(2);
1551    /// let y: Result<u32, &str> = Ok(100);
1552    /// assert_eq!(x.or(y), Ok(2));
1553    /// ```
1554    #[inline]
1555    #[stable(feature = "rust1", since = "1.0.0")]
1556    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
1557    #[ferrocene::prevalidated]
1558    pub const fn or<F>(self, res: Result<T, F>) -> Result<T, F>
1559    where
1560        T: [const] Destruct,
1561        E: [const] Destruct,
1562        F: [const] Destruct,
1563    {
1564        match self {
1565            Ok(v) => Ok(v),
1566            Err(_) => res,
1567        }
1568    }
1569
1570    /// Calls `op` if the result is [`Err`], otherwise returns the [`Ok`] value of `self`.
1571    ///
1572    /// This function can be used for control flow based on result values.
1573    ///
1574    ///
1575    /// # Examples
1576    ///
1577    /// ```
1578    /// fn sq(x: u32) -> Result<u32, u32> { Ok(x * x) }
1579    /// fn err(x: u32) -> Result<u32, u32> { Err(x) }
1580    ///
1581    /// assert_eq!(Ok(2).or_else(sq).or_else(sq), Ok(2));
1582    /// assert_eq!(Ok(2).or_else(err).or_else(sq), Ok(2));
1583    /// assert_eq!(Err(3).or_else(sq).or_else(err), Ok(9));
1584    /// assert_eq!(Err(3).or_else(err).or_else(err), Err(3));
1585    /// ```
1586    #[inline]
1587    #[stable(feature = "rust1", since = "1.0.0")]
1588    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
1589    #[ferrocene::prevalidated]
1590    pub const fn or_else<F, O>(self, op: O) -> Result<T, F>
1591    where
1592        O: [const] FnOnce(E) -> Result<T, F> + [const] Destruct,
1593    {
1594        match self {
1595            Ok(t) => Ok(t),
1596            Err(e) => op(e),
1597        }
1598    }
1599
1600    /// Returns the contained [`Ok`] value or a provided default.
1601    ///
1602    /// Arguments passed to `unwrap_or` are eagerly evaluated; if you are passing
1603    /// the result of a function call, it is recommended to use [`unwrap_or_else`],
1604    /// which is lazily evaluated.
1605    ///
1606    /// [`unwrap_or_else`]: Result::unwrap_or_else
1607    ///
1608    /// # Examples
1609    ///
1610    /// ```
1611    /// let default = 2;
1612    /// let x: Result<u32, &str> = Ok(9);
1613    /// assert_eq!(x.unwrap_or(default), 9);
1614    ///
1615    /// let x: Result<u32, &str> = Err("error");
1616    /// assert_eq!(x.unwrap_or(default), default);
1617    /// ```
1618    #[inline]
1619    #[stable(feature = "rust1", since = "1.0.0")]
1620    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
1621    #[ferrocene::prevalidated]
1622    pub const fn unwrap_or(self, default: T) -> T
1623    where
1624        T: [const] Destruct,
1625        E: [const] Destruct,
1626    {
1627        match self {
1628            Ok(t) => t,
1629            Err(_) => default,
1630        }
1631    }
1632
1633    /// Returns the contained [`Ok`] value or computes it from a closure.
1634    ///
1635    ///
1636    /// # Examples
1637    ///
1638    /// ```
1639    /// fn count(x: &str) -> usize { x.len() }
1640    ///
1641    /// assert_eq!(Ok(2).unwrap_or_else(count), 2);
1642    /// assert_eq!(Err("foo").unwrap_or_else(count), 3);
1643    /// ```
1644    #[inline]
1645    #[track_caller]
1646    #[stable(feature = "rust1", since = "1.0.0")]
1647    #[rustc_const_unstable(feature = "const_result_trait_fn", issue = "144211")]
1648    #[ferrocene::prevalidated]
1649    pub const fn unwrap_or_else<F>(self, op: F) -> T
1650    where
1651        F: [const] FnOnce(E) -> T + [const] Destruct,
1652    {
1653        match self {
1654            Ok(t) => t,
1655            Err(e) => op(e),
1656        }
1657    }
1658
1659    /// Returns the contained [`Ok`] value, consuming the `self` value,
1660    /// without checking that the value is not an [`Err`].
1661    ///
1662    /// # Safety
1663    ///
1664    /// Calling this method on an [`Err`] is *[undefined behavior]*.
1665    ///
1666    /// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
1667    ///
1668    /// # Examples
1669    ///
1670    /// ```
1671    /// let x: Result<u32, &str> = Ok(2);
1672    /// assert_eq!(unsafe { x.unwrap_unchecked() }, 2);
1673    /// ```
1674    ///
1675    /// ```no_run
1676    /// let x: Result<u32, &str> = Err("emergency failure");
1677    /// unsafe { x.unwrap_unchecked() }; // Undefined behavior!
1678    /// ```
1679    #[inline]
1680    #[track_caller]
1681    #[stable(feature = "option_result_unwrap_unchecked", since = "1.58.0")]
1682    #[rustc_const_unstable(feature = "const_result_unwrap_unchecked", issue = "148714")]
1683    #[ferrocene::prevalidated]
1684    pub const unsafe fn unwrap_unchecked(self) -> T {
1685        match self {
1686            Ok(t) => t,
1687            #[ferrocene::annotation(
1688                "This line cannot be covered as reaching `unreachable_unchecked` is undefined behavior"
1689            )]
1690            Err(e) => {
1691                // FIXME(const-hack): to avoid E: const Destruct bound
1692                super::mem::forget(e);
1693                // SAFETY: the safety contract must be upheld by the caller.
1694                unsafe { hint::unreachable_unchecked() }
1695            }
1696        }
1697    }
1698
1699    /// Returns the contained [`Err`] value, consuming the `self` value,
1700    /// without checking that the value is not an [`Ok`].
1701    ///
1702    /// # Safety
1703    ///
1704    /// Calling this method on an [`Ok`] is *[undefined behavior]*.
1705    ///
1706    /// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
1707    ///
1708    /// # Examples
1709    ///
1710    /// ```no_run
1711    /// let x: Result<u32, &str> = Ok(2);
1712    /// unsafe { x.unwrap_err_unchecked() }; // Undefined behavior!
1713    /// ```
1714    ///
1715    /// ```
1716    /// let x: Result<u32, &str> = Err("emergency failure");
1717    /// assert_eq!(unsafe { x.unwrap_err_unchecked() }, "emergency failure");
1718    /// ```
1719    #[inline]
1720    #[track_caller]
1721    #[stable(feature = "option_result_unwrap_unchecked", since = "1.58.0")]
1722    #[ferrocene::prevalidated]
1723    pub unsafe fn unwrap_err_unchecked(self) -> E {
1724        match self {
1725            #[ferrocene::annotation(
1726                "This line cannot be covered as reaching `unreachable_unchecked` is undefined behavior"
1727            )]
1728            // SAFETY: the safety contract must be upheld by the caller.
1729            Ok(_) => unsafe { hint::unreachable_unchecked() },
1730            Err(e) => e,
1731        }
1732    }
1733}
1734
1735impl<T, E> Result<&T, E> {
1736    /// Maps a `Result<&T, E>` to a `Result<T, E>` by copying the contents of the
1737    /// `Ok` part.
1738    ///
1739    /// # Examples
1740    ///
1741    /// ```
1742    /// let val = 12;
1743    /// let x: Result<&i32, i32> = Ok(&val);
1744    /// assert_eq!(x, Ok(&12));
1745    /// let copied = x.copied();
1746    /// assert_eq!(copied, Ok(12));
1747    /// ```
1748    #[inline]
1749    #[stable(feature = "result_copied", since = "1.59.0")]
1750    #[rustc_const_stable(feature = "const_result", since = "1.83.0")]
1751    #[rustc_allow_const_fn_unstable(const_precise_live_drops)]
1752    #[ferrocene::prevalidated]
1753    pub const fn copied(self) -> Result<T, E>
1754    where
1755        T: Copy,
1756    {
1757        // FIXME(const-hack): this implementation, which sidesteps using `Result::map` since it's not const
1758        // ready yet, should be reverted when possible to avoid code repetition
1759        match self {
1760            Ok(&v) => Ok(v),
1761            Err(e) => Err(e),
1762        }
1763    }
1764
1765    /// Maps a `Result<&T, E>` to a `Result<T, E>` by cloning the contents of the
1766    /// `Ok` part.
1767    ///
1768    /// # Examples
1769    ///
1770    /// ```
1771    /// let val = 12;
1772    /// let x: Result<&i32, i32> = Ok(&val);
1773    /// assert_eq!(x, Ok(&12));
1774    /// let cloned = x.cloned();
1775    /// assert_eq!(cloned, Ok(12));
1776    /// ```
1777    #[inline]
1778    #[stable(feature = "result_cloned", since = "1.59.0")]
1779    #[ferrocene::prevalidated]
1780    pub fn cloned(self) -> Result<T, E>
1781    where
1782        T: Clone,
1783    {
1784        self.map(|t| t.clone())
1785    }
1786}
1787
1788impl<T, E> Result<&mut T, E> {
1789    /// Maps a `Result<&mut T, E>` to a `Result<T, E>` by copying the contents of the
1790    /// `Ok` part.
1791    ///
1792    /// # Examples
1793    ///
1794    /// ```
1795    /// let mut val = 12;
1796    /// let x: Result<&mut i32, i32> = Ok(&mut val);
1797    /// assert_eq!(x, Ok(&mut 12));
1798    /// let copied = x.copied();
1799    /// assert_eq!(copied, Ok(12));
1800    /// ```
1801    #[inline]
1802    #[stable(feature = "result_copied", since = "1.59.0")]
1803    #[rustc_const_stable(feature = "const_result", since = "1.83.0")]
1804    #[rustc_allow_const_fn_unstable(const_precise_live_drops)]
1805    #[ferrocene::prevalidated]
1806    pub const fn copied(self) -> Result<T, E>
1807    where
1808        T: Copy,
1809    {
1810        // FIXME(const-hack): this implementation, which sidesteps using `Result::map` since it's not const
1811        // ready yet, should be reverted when possible to avoid code repetition
1812        match self {
1813            Ok(&mut v) => Ok(v),
1814            Err(e) => Err(e),
1815        }
1816    }
1817
1818    /// Maps a `Result<&mut T, E>` to a `Result<T, E>` by cloning the contents of the
1819    /// `Ok` part.
1820    ///
1821    /// # Examples
1822    ///
1823    /// ```
1824    /// let mut val = 12;
1825    /// let x: Result<&mut i32, i32> = Ok(&mut val);
1826    /// assert_eq!(x, Ok(&mut 12));
1827    /// let cloned = x.cloned();
1828    /// assert_eq!(cloned, Ok(12));
1829    /// ```
1830    #[inline]
1831    #[stable(feature = "result_cloned", since = "1.59.0")]
1832    #[ferrocene::prevalidated]
1833    pub fn cloned(self) -> Result<T, E>
1834    where
1835        T: Clone,
1836    {
1837        self.map(|t| t.clone())
1838    }
1839}
1840
1841impl<T, E> Result<Option<T>, E> {
1842    /// Transposes a `Result` of an `Option` into an `Option` of a `Result`.
1843    ///
1844    /// `Ok(None)` will be mapped to `None`.
1845    /// `Ok(Some(_))` and `Err(_)` will be mapped to `Some(Ok(_))` and `Some(Err(_))`.
1846    ///
1847    /// # Examples
1848    ///
1849    /// ```
1850    /// #[derive(Debug, Eq, PartialEq)]
1851    /// struct SomeErr;
1852    ///
1853    /// let x: Result<Option<i32>, SomeErr> = Ok(Some(5));
1854    /// let y: Option<Result<i32, SomeErr>> = Some(Ok(5));
1855    /// assert_eq!(x.transpose(), y);
1856    /// ```
1857    #[inline]
1858    #[stable(feature = "transpose_result", since = "1.33.0")]
1859    #[rustc_const_stable(feature = "const_result", since = "1.83.0")]
1860    #[rustc_allow_const_fn_unstable(const_precise_live_drops)]
1861    #[ferrocene::prevalidated]
1862    pub const fn transpose(self) -> Option<Result<T, E>> {
1863        match self {
1864            Ok(Some(x)) => Some(Ok(x)),
1865            Ok(None) => None,
1866            Err(e) => Some(Err(e)),
1867        }
1868    }
1869}
1870
1871impl<T, E> Result<Result<T, E>, E> {
1872    /// Converts from `Result<Result<T, E>, E>` to `Result<T, E>`
1873    ///
1874    /// # Examples
1875    ///
1876    /// ```
1877    /// let x: Result<Result<&'static str, u32>, u32> = Ok(Ok("hello"));
1878    /// assert_eq!(Ok("hello"), x.flatten());
1879    ///
1880    /// let x: Result<Result<&'static str, u32>, u32> = Ok(Err(6));
1881    /// assert_eq!(Err(6), x.flatten());
1882    ///
1883    /// let x: Result<Result<&'static str, u32>, u32> = Err(6);
1884    /// assert_eq!(Err(6), x.flatten());
1885    /// ```
1886    ///
1887    /// Flattening only removes one level of nesting at a time:
1888    ///
1889    /// ```
1890    /// let x: Result<Result<Result<&'static str, u32>, u32>, u32> = Ok(Ok(Ok("hello")));
1891    /// assert_eq!(Ok(Ok("hello")), x.flatten());
1892    /// assert_eq!(Ok("hello"), x.flatten().flatten());
1893    /// ```
1894    #[inline]
1895    #[stable(feature = "result_flattening", since = "1.89.0")]
1896    #[rustc_allow_const_fn_unstable(const_precise_live_drops)]
1897    #[rustc_const_stable(feature = "result_flattening", since = "1.89.0")]
1898    // Ferrocene: blocked on const impl Drop for Result<Result<T, E>>
1899    pub const fn flatten(self) -> Result<T, E> {
1900        // FIXME(const-hack): could be written with `and_then`
1901        match self {
1902            Ok(inner) => inner,
1903            Err(e) => Err(e),
1904        }
1905    }
1906}
1907
1908// This is a separate function to reduce the code size of the methods
1909#[cfg(not(panic = "immediate-abort"))]
1910#[inline(never)]
1911#[cold]
1912#[track_caller]
1913#[ferrocene::prevalidated]
1914fn unwrap_failed(msg: &str, error: &dyn fmt::Debug) -> ! {
1915    panic!("{msg}: {error:?}");
1916}
1917
1918// This is a separate function to avoid constructing a `dyn Debug`
1919// that gets immediately thrown away, since vtables don't get cleaned up
1920// by dead code elimination if a trait object is constructed even if it goes
1921// unused
1922#[cfg(panic = "immediate-abort")]
1923#[inline]
1924#[cold]
1925#[track_caller]
1926const fn unwrap_failed<T>(_msg: &str, _error: &T) -> ! {
1927    panic!()
1928}
1929
1930/////////////////////////////////////////////////////////////////////////////
1931// Trait implementations
1932/////////////////////////////////////////////////////////////////////////////
1933
1934#[stable(feature = "rust1", since = "1.0.0")]
1935impl<T, E> Clone for Result<T, E>
1936where
1937    T: Clone,
1938    E: Clone,
1939{
1940    #[inline]
1941    #[ferrocene::prevalidated]
1942    fn clone(&self) -> Self {
1943        match self {
1944            Ok(x) => Ok(x.clone()),
1945            Err(x) => Err(x.clone()),
1946        }
1947    }
1948
1949    #[inline]
1950    #[ferrocene::prevalidated]
1951    fn clone_from(&mut self, source: &Self) {
1952        match (self, source) {
1953            (Ok(to), Ok(from)) => to.clone_from(from),
1954            (Err(to), Err(from)) => to.clone_from(from),
1955            (to, from) => *to = from.clone(),
1956        }
1957    }
1958}
1959
1960#[unstable(feature = "ergonomic_clones", issue = "132290")]
1961impl<T, E> crate::clone::UseCloned for Result<T, E>
1962where
1963    T: crate::clone::UseCloned,
1964    E: crate::clone::UseCloned,
1965{
1966}
1967
1968#[stable(feature = "rust1", since = "1.0.0")]
1969impl<T, E> IntoIterator for Result<T, E> {
1970    type Item = T;
1971    type IntoIter = IntoIter<T>;
1972
1973    /// Returns a consuming iterator over the possibly contained value.
1974    ///
1975    /// The iterator yields one value if the result is [`Result::Ok`], otherwise none.
1976    ///
1977    /// # Examples
1978    ///
1979    /// ```
1980    /// let x: Result<u32, &str> = Ok(5);
1981    /// let v: Vec<u32> = x.into_iter().collect();
1982    /// assert_eq!(v, [5]);
1983    ///
1984    /// let x: Result<u32, &str> = Err("nothing!");
1985    /// let v: Vec<u32> = x.into_iter().collect();
1986    /// assert_eq!(v, []);
1987    /// ```
1988    #[inline]
1989    fn into_iter(self) -> IntoIter<T> {
1990        IntoIter { inner: self.ok() }
1991    }
1992}
1993
1994#[stable(since = "1.4.0", feature = "result_iter")]
1995impl<'a, T, E> IntoIterator for &'a Result<T, E> {
1996    type Item = &'a T;
1997    type IntoIter = Iter<'a, T>;
1998
1999    fn into_iter(self) -> Iter<'a, T> {
2000        self.iter()
2001    }
2002}
2003
2004#[stable(since = "1.4.0", feature = "result_iter")]
2005impl<'a, T, E> IntoIterator for &'a mut Result<T, E> {
2006    type Item = &'a mut T;
2007    type IntoIter = IterMut<'a, T>;
2008
2009    fn into_iter(self) -> IterMut<'a, T> {
2010        self.iter_mut()
2011    }
2012}
2013
2014/////////////////////////////////////////////////////////////////////////////
2015// The Result Iterators
2016/////////////////////////////////////////////////////////////////////////////
2017
2018/// An iterator over a reference to the [`Ok`] variant of a [`Result`].
2019///
2020/// The iterator yields one value if the result is [`Ok`], otherwise none.
2021///
2022/// Created by [`Result::iter`].
2023#[derive(Debug)]
2024#[stable(feature = "rust1", since = "1.0.0")]
2025pub struct Iter<'a, T: 'a> {
2026    inner: Option<&'a T>,
2027}
2028
2029#[stable(feature = "rust1", since = "1.0.0")]
2030impl<'a, T> Iterator for Iter<'a, T> {
2031    type Item = &'a T;
2032
2033    #[inline]
2034    fn next(&mut self) -> Option<&'a T> {
2035        self.inner.take()
2036    }
2037    #[inline]
2038    fn size_hint(&self) -> (usize, Option<usize>) {
2039        let n = if self.inner.is_some() { 1 } else { 0 };
2040        (n, Some(n))
2041    }
2042}
2043
2044#[stable(feature = "rust1", since = "1.0.0")]
2045impl<'a, T> DoubleEndedIterator for Iter<'a, T> {
2046    #[inline]
2047    fn next_back(&mut self) -> Option<&'a T> {
2048        self.inner.take()
2049    }
2050}
2051
2052#[stable(feature = "rust1", since = "1.0.0")]
2053impl<T> ExactSizeIterator for Iter<'_, T> {}
2054
2055#[stable(feature = "fused", since = "1.26.0")]
2056impl<T> FusedIterator for Iter<'_, T> {}
2057
2058#[unstable(feature = "trusted_len", issue = "37572")]
2059unsafe impl<A> TrustedLen for Iter<'_, A> {}
2060
2061#[stable(feature = "rust1", since = "1.0.0")]
2062impl<T> Clone for Iter<'_, T> {
2063    #[inline]
2064    fn clone(&self) -> Self {
2065        Iter { inner: self.inner }
2066    }
2067}
2068
2069/// An iterator over a mutable reference to the [`Ok`] variant of a [`Result`].
2070///
2071/// Created by [`Result::iter_mut`].
2072#[derive(Debug)]
2073#[stable(feature = "rust1", since = "1.0.0")]
2074pub struct IterMut<'a, T: 'a> {
2075    inner: Option<&'a mut T>,
2076}
2077
2078#[stable(feature = "rust1", since = "1.0.0")]
2079impl<'a, T> Iterator for IterMut<'a, T> {
2080    type Item = &'a mut T;
2081
2082    #[inline]
2083    fn next(&mut self) -> Option<&'a mut T> {
2084        self.inner.take()
2085    }
2086    #[inline]
2087    fn size_hint(&self) -> (usize, Option<usize>) {
2088        let n = if self.inner.is_some() { 1 } else { 0 };
2089        (n, Some(n))
2090    }
2091}
2092
2093#[stable(feature = "rust1", since = "1.0.0")]
2094impl<'a, T> DoubleEndedIterator for IterMut<'a, T> {
2095    #[inline]
2096    fn next_back(&mut self) -> Option<&'a mut T> {
2097        self.inner.take()
2098    }
2099}
2100
2101#[stable(feature = "rust1", since = "1.0.0")]
2102impl<T> ExactSizeIterator for IterMut<'_, T> {}
2103
2104#[stable(feature = "fused", since = "1.26.0")]
2105impl<T> FusedIterator for IterMut<'_, T> {}
2106
2107#[unstable(feature = "trusted_len", issue = "37572")]
2108unsafe impl<A> TrustedLen for IterMut<'_, A> {}
2109
2110/// An iterator over the value in a [`Ok`] variant of a [`Result`].
2111///
2112/// The iterator yields one value if the result is [`Ok`], otherwise none.
2113///
2114/// This struct is created by the [`into_iter`] method on
2115/// [`Result`] (provided by the [`IntoIterator`] trait).
2116///
2117/// [`into_iter`]: IntoIterator::into_iter
2118#[derive(Clone, Debug)]
2119#[stable(feature = "rust1", since = "1.0.0")]
2120pub struct IntoIter<T> {
2121    inner: Option<T>,
2122}
2123
2124#[stable(feature = "rust1", since = "1.0.0")]
2125impl<T> Iterator for IntoIter<T> {
2126    type Item = T;
2127
2128    #[inline]
2129    fn next(&mut self) -> Option<T> {
2130        self.inner.take()
2131    }
2132    #[inline]
2133    fn size_hint(&self) -> (usize, Option<usize>) {
2134        let n = if self.inner.is_some() { 1 } else { 0 };
2135        (n, Some(n))
2136    }
2137}
2138
2139#[stable(feature = "rust1", since = "1.0.0")]
2140impl<T> DoubleEndedIterator for IntoIter<T> {
2141    #[inline]
2142    fn next_back(&mut self) -> Option<T> {
2143        self.inner.take()
2144    }
2145}
2146
2147#[stable(feature = "rust1", since = "1.0.0")]
2148impl<T> ExactSizeIterator for IntoIter<T> {}
2149
2150#[stable(feature = "fused", since = "1.26.0")]
2151impl<T> FusedIterator for IntoIter<T> {}
2152
2153#[unstable(feature = "trusted_len", issue = "37572")]
2154unsafe impl<A> TrustedLen for IntoIter<A> {}
2155
2156/////////////////////////////////////////////////////////////////////////////
2157// FromIterator
2158/////////////////////////////////////////////////////////////////////////////
2159
2160#[stable(feature = "rust1", since = "1.0.0")]
2161impl<A, E, V: FromIterator<A>> FromIterator<Result<A, E>> for Result<V, E> {
2162    /// Takes each element in the `Iterator`: if it is an `Err`, no further
2163    /// elements are taken, and the `Err` is returned. Should no `Err` occur, a
2164    /// container with the values of each `Result` is returned.
2165    ///
2166    /// Here is an example which increments every integer in a vector,
2167    /// checking for overflow:
2168    ///
2169    /// ```
2170    /// let v = vec![1, 2];
2171    /// let res: Result<Vec<u32>, &'static str> = v.iter().map(|x: &u32|
2172    ///     x.checked_add(1).ok_or("Overflow!")
2173    /// ).collect();
2174    /// assert_eq!(res, Ok(vec![2, 3]));
2175    /// ```
2176    ///
2177    /// Here is another example that tries to subtract one from another list
2178    /// of integers, this time checking for underflow:
2179    ///
2180    /// ```
2181    /// let v = vec![1, 2, 0];
2182    /// let res: Result<Vec<u32>, &'static str> = v.iter().map(|x: &u32|
2183    ///     x.checked_sub(1).ok_or("Underflow!")
2184    /// ).collect();
2185    /// assert_eq!(res, Err("Underflow!"));
2186    /// ```
2187    ///
2188    /// Here is a variation on the previous example, showing that no
2189    /// further elements are taken from `iter` after the first `Err`.
2190    ///
2191    /// ```
2192    /// let v = vec![3, 2, 1, 10];
2193    /// let mut shared = 0;
2194    /// let res: Result<Vec<u32>, &'static str> = v.iter().map(|x: &u32| {
2195    ///     shared += x;
2196    ///     x.checked_sub(2).ok_or("Underflow!")
2197    /// }).collect();
2198    /// assert_eq!(res, Err("Underflow!"));
2199    /// assert_eq!(shared, 6);
2200    /// ```
2201    ///
2202    /// Since the third element caused an underflow, no further elements were taken,
2203    /// so the final value of `shared` is 6 (= `3 + 2 + 1`), not 16.
2204    #[inline]
2205    fn from_iter<I: IntoIterator<Item = Result<A, E>>>(iter: I) -> Result<V, E> {
2206        iter::try_process(iter.into_iter(), |i| i.collect())
2207    }
2208}
2209
2210#[unstable(feature = "try_trait_v2", issue = "84277", old_name = "try_trait")]
2211#[rustc_const_unstable(feature = "const_try", issue = "74935")]
2212impl<T, E> const ops::Try for Result<T, E> {
2213    type Output = T;
2214    type Residual = Result<convert::Infallible, E>;
2215
2216    #[inline]
2217    #[ferrocene::prevalidated]
2218    fn from_output(output: Self::Output) -> Self {
2219        Ok(output)
2220    }
2221
2222    #[inline]
2223    #[ferrocene::prevalidated]
2224    fn branch(self) -> ControlFlow<Self::Residual, Self::Output> {
2225        match self {
2226            Ok(v) => ControlFlow::Continue(v),
2227            Err(e) => ControlFlow::Break(Err(e)),
2228        }
2229    }
2230}
2231
2232#[unstable(feature = "try_trait_v2", issue = "84277", old_name = "try_trait")]
2233#[rustc_const_unstable(feature = "const_try", issue = "74935")]
2234impl<T, E, F: [const] From<E>> const ops::FromResidual<Result<convert::Infallible, E>>
2235    for Result<T, F>
2236{
2237    #[inline]
2238    #[track_caller]
2239    #[ferrocene::prevalidated]
2240    fn from_residual(residual: Result<convert::Infallible, E>) -> Self {
2241        match residual {
2242            Err(e) => Err(From::from(e)),
2243        }
2244    }
2245}
2246#[diagnostic::do_not_recommend]
2247#[unstable(feature = "try_trait_v2_yeet", issue = "96374")]
2248#[rustc_const_unstable(feature = "const_try", issue = "74935")]
2249impl<T, E, F: [const] From<E>> const ops::FromResidual<ops::Yeet<E>> for Result<T, F> {
2250    #[inline]
2251    fn from_residual(ops::Yeet(e): ops::Yeet<E>) -> Self {
2252        Err(From::from(e))
2253    }
2254}
2255
2256#[unstable(feature = "try_trait_v2_residual", issue = "91285")]
2257#[rustc_const_unstable(feature = "const_try", issue = "74935")]
2258impl<T, E> const ops::Residual<T> for Result<convert::Infallible, E> {
2259    type TryType = Result<T, E>;
2260}