2016-03-04 16:37:11 -06:00
|
|
|
//! Error handling with the `Result` type.
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2016-09-09 09:08:04 -05:00
|
|
|
//! [`Result<T, E>`][`Result`] is the type used for returning and propagating
|
|
|
|
//! errors. It is an enum with the variants, [`Ok(T)`], representing
|
|
|
|
//! success and containing a value, and [`Err(E)`], representing error
|
2014-04-12 18:33:21 -05:00
|
|
|
//! and containing an error value.
|
|
|
|
//!
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```
|
2015-11-03 09:27:03 -06:00
|
|
|
//! # #[allow(dead_code)]
|
2014-04-12 18:33:21 -05:00
|
|
|
//! enum Result<T, E> {
|
|
|
|
//! Ok(T),
|
2016-04-08 19:00:12 -05:00
|
|
|
//! Err(E),
|
2014-04-12 18:33:21 -05:00
|
|
|
//! }
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2016-09-09 09:08:04 -05:00
|
|
|
//! Functions return [`Result`] whenever errors are expected and
|
|
|
|
//! recoverable. In the `std` crate, [`Result`] is most prominently used
|
2014-05-09 15:57:37 -05:00
|
|
|
//! for [I/O](../../std/io/index.html).
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2016-09-09 09:08:04 -05:00
|
|
|
//! A simple function returning [`Result`] might be
|
2014-04-12 18:33:21 -05:00
|
|
|
//! defined and used like so:
|
|
|
|
//!
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```
|
2015-01-28 07:34:18 -06:00
|
|
|
//! #[derive(Debug)]
|
2014-04-12 18:33:21 -05:00
|
|
|
//! enum Version { Version1, Version2 }
|
|
|
|
//!
|
|
|
|
//! fn parse_version(header: &[u8]) -> Result<Version, &'static str> {
|
2015-04-03 20:32:29 -05:00
|
|
|
//! match header.get(0) {
|
|
|
|
//! None => Err("invalid header length"),
|
|
|
|
//! Some(&1) => Ok(Version::Version1),
|
|
|
|
//! Some(&2) => Ok(Version::Version2),
|
2016-04-08 19:00:12 -05:00
|
|
|
//! Some(_) => Err("invalid version"),
|
2014-04-12 18:33:21 -05:00
|
|
|
//! }
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! let version = parse_version(&[1, 2, 3, 4]);
|
|
|
|
//! match version {
|
2015-04-03 20:09:11 -05:00
|
|
|
//! Ok(v) => println!("working with version: {:?}", v),
|
|
|
|
//! Err(e) => println!("error parsing header: {:?}", e),
|
2014-04-12 18:33:21 -05:00
|
|
|
//! }
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2016-09-09 09:08:04 -05:00
|
|
|
//! Pattern matching on [`Result`]s is clear and straightforward for
|
|
|
|
//! simple cases, but [`Result`] comes with some convenience methods
|
2014-11-22 21:13:00 -06:00
|
|
|
//! that make working with it more succinct.
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```
|
2015-03-25 19:06:52 -05:00
|
|
|
//! let good_result: Result<i32, i32> = Ok(10);
|
|
|
|
//! let bad_result: Result<i32, i32> = Err(10);
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
|
|
|
//! // The `is_ok` and `is_err` methods do what they say.
|
|
|
|
//! assert!(good_result.is_ok() && !good_result.is_err());
|
|
|
|
//! assert!(bad_result.is_err() && !bad_result.is_ok());
|
|
|
|
//!
|
|
|
|
//! // `map` consumes the `Result` and produces another.
|
2015-03-25 19:06:52 -05:00
|
|
|
//! let good_result: Result<i32, i32> = good_result.map(|i| i + 1);
|
|
|
|
//! let bad_result: Result<i32, i32> = bad_result.map(|i| i - 1);
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
|
|
|
//! // Use `and_then` to continue the computation.
|
2015-03-25 19:06:52 -05:00
|
|
|
//! let good_result: Result<bool, i32> = good_result.and_then(|i| Ok(i == 11));
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
|
|
|
//! // Use `or_else` to handle the error.
|
2015-04-06 15:47:24 -05:00
|
|
|
//! let bad_result: Result<i32, i32> = bad_result.or_else(|i| Ok(i + 20));
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2014-04-15 01:12:34 -05:00
|
|
|
//! // Consume the result and return the contents with `unwrap`.
|
2015-03-20 02:19:13 -05:00
|
|
|
//! let final_awesome_result = good_result.unwrap();
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
|
|
|
//! # Results must be used
|
|
|
|
//!
|
2014-04-15 01:12:34 -05:00
|
|
|
//! A common problem with using return values to indicate errors is
|
|
|
|
//! that it is easy to ignore the return value, thus failing to handle
|
2016-09-09 09:08:04 -05:00
|
|
|
//! the error. [`Result`] is annotated with the `#[must_use]` attribute,
|
2014-04-15 01:12:34 -05:00
|
|
|
//! which will cause the compiler to issue a warning when a Result
|
2016-09-09 09:08:04 -05:00
|
|
|
//! value is ignored. This makes [`Result`] especially useful with
|
2014-04-15 01:12:34 -05:00
|
|
|
//! functions that may encounter errors but don't otherwise return a
|
|
|
|
//! useful value.
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2016-09-09 09:08:04 -05:00
|
|
|
//! Consider the [`write_all`] method defined for I/O types
|
|
|
|
//! by the [`Write`] trait:
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```
|
2015-04-10 15:23:17 -05:00
|
|
|
//! use std::io;
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2015-04-16 15:12:13 -05:00
|
|
|
//! trait Write {
|
2015-04-10 15:23:17 -05:00
|
|
|
//! fn write_all(&mut self, bytes: &[u8]) -> Result<(), io::Error>;
|
2014-04-12 18:33:21 -05:00
|
|
|
//! }
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2016-09-09 09:08:04 -05:00
|
|
|
//! *Note: The actual definition of [`Write`] uses [`io::Result`], which
|
|
|
|
//! is just a synonym for [`Result`]`<T, `[`io::Error`]`>`.*
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2014-06-08 23:00:52 -05:00
|
|
|
//! This method doesn't produce a value, but the write may
|
2014-04-12 18:33:21 -05:00
|
|
|
//! fail. It's crucial to handle the error case, and *not* write
|
|
|
|
//! something like this:
|
|
|
|
//!
|
2015-04-10 15:23:17 -05:00
|
|
|
//! ```no_run
|
2015-11-03 09:27:03 -06:00
|
|
|
//! # #![allow(unused_must_use)] // \o/
|
2015-04-10 15:23:17 -05:00
|
|
|
//! use std::fs::File;
|
|
|
|
//! use std::io::prelude::*;
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2015-04-10 15:23:17 -05:00
|
|
|
//! let mut file = File::create("valuable_data.txt").unwrap();
|
|
|
|
//! // If `write_all` errors, then we'll never know, because the return
|
2014-04-12 18:33:21 -05:00
|
|
|
//! // value is ignored.
|
2015-04-10 15:23:17 -05:00
|
|
|
//! file.write_all(b"important message");
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2015-01-13 12:24:48 -06:00
|
|
|
//! If you *do* write that in Rust, the compiler will give you a
|
2014-04-12 18:33:21 -05:00
|
|
|
//! warning (by default, controlled by the `unused_must_use` lint).
|
|
|
|
//!
|
|
|
|
//! You might instead, if you don't want to handle the error, simply
|
2016-09-09 09:08:04 -05:00
|
|
|
//! assert success with [`expect`]. This will panic if the
|
2015-11-01 13:41:23 -06:00
|
|
|
//! write fails, providing a marginally useful message indicating why:
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```{.no_run}
|
2015-04-10 15:23:17 -05:00
|
|
|
//! use std::fs::File;
|
|
|
|
//! use std::io::prelude::*;
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2015-04-10 15:23:17 -05:00
|
|
|
//! let mut file = File::create("valuable_data.txt").unwrap();
|
2015-11-01 13:41:23 -06:00
|
|
|
//! file.write_all(b"important message").expect("failed to write message");
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
|
|
|
//! You might also simply assert success:
|
|
|
|
//!
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```{.no_run}
|
2015-04-10 15:23:17 -05:00
|
|
|
//! # use std::fs::File;
|
|
|
|
//! # use std::io::prelude::*;
|
|
|
|
//! # let mut file = File::create("valuable_data.txt").unwrap();
|
|
|
|
//! assert!(file.write_all(b"important message").is_ok());
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2017-02-11 20:02:55 -06:00
|
|
|
//! Or propagate the error up the call stack with [`?`]:
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```
|
2015-04-10 15:23:17 -05:00
|
|
|
//! # use std::fs::File;
|
|
|
|
//! # use std::io::prelude::*;
|
|
|
|
//! # use std::io;
|
2015-11-03 09:27:03 -06:00
|
|
|
//! # #[allow(dead_code)]
|
2015-04-10 15:23:17 -05:00
|
|
|
//! fn write_message() -> io::Result<()> {
|
2017-02-11 20:02:55 -06:00
|
|
|
//! let mut file = File::create("valuable_data.txt")?;
|
|
|
|
//! file.write_all(b"important message")?;
|
2015-04-06 02:06:24 -05:00
|
|
|
//! Ok(())
|
2014-04-12 18:33:21 -05:00
|
|
|
//! }
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2017-12-01 12:00:45 -06:00
|
|
|
//! # The question mark operator, `?`
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
|
|
|
//! When writing code that calls many functions that return the
|
2017-12-01 12:00:45 -06:00
|
|
|
//! [`Result`] type, the error handling can be tedious. The question mark
|
|
|
|
//! operator, [`?`], hides some of the boilerplate of propagating errors
|
|
|
|
//! up the call stack.
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
|
|
|
//! It replaces this:
|
|
|
|
//!
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```
|
2015-11-03 09:27:03 -06:00
|
|
|
//! # #![allow(dead_code)]
|
2015-04-10 15:23:17 -05:00
|
|
|
//! use std::fs::File;
|
|
|
|
//! use std::io::prelude::*;
|
|
|
|
//! use std::io;
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2014-05-20 01:19:56 -05:00
|
|
|
//! struct Info {
|
2014-05-22 18:57:53 -05:00
|
|
|
//! name: String,
|
2015-03-25 19:06:52 -05:00
|
|
|
//! age: i32,
|
|
|
|
//! rating: i32,
|
2014-05-20 01:19:56 -05:00
|
|
|
//! }
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2015-04-10 15:23:17 -05:00
|
|
|
//! fn write_info(info: &Info) -> io::Result<()> {
|
2014-04-12 18:33:21 -05:00
|
|
|
//! // Early return on error
|
2016-06-28 18:13:03 -05:00
|
|
|
//! let mut file = match File::create("my_best_friends.txt") {
|
|
|
|
//! Err(e) => return Err(e),
|
|
|
|
//! Ok(f) => f,
|
|
|
|
//! };
|
2015-04-10 15:23:17 -05:00
|
|
|
//! if let Err(e) = file.write_all(format!("name: {}\n", info.name).as_bytes()) {
|
|
|
|
//! return Err(e)
|
|
|
|
//! }
|
|
|
|
//! if let Err(e) = file.write_all(format!("age: {}\n", info.age).as_bytes()) {
|
2015-01-13 12:25:13 -06:00
|
|
|
//! return Err(e)
|
2014-04-12 18:33:21 -05:00
|
|
|
//! }
|
2015-04-10 15:23:17 -05:00
|
|
|
//! if let Err(e) = file.write_all(format!("rating: {}\n", info.rating).as_bytes()) {
|
2015-01-13 12:25:13 -06:00
|
|
|
//! return Err(e)
|
2014-04-12 18:33:21 -05:00
|
|
|
//! }
|
2015-04-10 15:23:17 -05:00
|
|
|
//! Ok(())
|
2014-04-12 18:33:21 -05:00
|
|
|
//! }
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
|
|
|
//! With this:
|
|
|
|
//!
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```
|
2015-11-03 09:27:03 -06:00
|
|
|
//! # #![allow(dead_code)]
|
2015-04-10 15:23:17 -05:00
|
|
|
//! use std::fs::File;
|
|
|
|
//! use std::io::prelude::*;
|
|
|
|
//! use std::io;
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2014-05-20 01:19:56 -05:00
|
|
|
//! struct Info {
|
2014-05-22 18:57:53 -05:00
|
|
|
//! name: String,
|
2015-03-25 19:06:52 -05:00
|
|
|
//! age: i32,
|
|
|
|
//! rating: i32,
|
2014-05-20 01:19:56 -05:00
|
|
|
//! }
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2015-04-10 15:23:17 -05:00
|
|
|
//! fn write_info(info: &Info) -> io::Result<()> {
|
2017-02-11 20:02:55 -06:00
|
|
|
//! let mut file = File::create("my_best_friends.txt")?;
|
2014-04-12 18:33:21 -05:00
|
|
|
//! // Early return on error
|
2017-02-11 20:02:55 -06:00
|
|
|
//! file.write_all(format!("name: {}\n", info.name).as_bytes())?;
|
|
|
|
//! file.write_all(format!("age: {}\n", info.age).as_bytes())?;
|
|
|
|
//! file.write_all(format!("rating: {}\n", info.rating).as_bytes())?;
|
2015-04-06 02:06:24 -05:00
|
|
|
//! Ok(())
|
2014-04-12 18:33:21 -05:00
|
|
|
//! }
|
2014-09-16 06:27:34 -05:00
|
|
|
//! ```
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
|
|
|
//! *It's much nicer!*
|
|
|
|
//!
|
2017-02-11 20:02:55 -06:00
|
|
|
//! Ending the expression with [`?`] will result in the unwrapped
|
2016-09-09 09:08:04 -05:00
|
|
|
//! success ([`Ok`]) value, unless the result is [`Err`], in which case
|
2017-02-11 20:02:55 -06:00
|
|
|
//! [`Err`] is returned early from the enclosing function.
|
2014-04-12 18:33:21 -05:00
|
|
|
//!
|
2017-02-11 20:02:55 -06:00
|
|
|
//! [`?`] can only be used in functions that return [`Result`] because of the
|
|
|
|
//! early return of [`Err`] that it provides.
|
2016-09-09 09:08:04 -05:00
|
|
|
//!
|
|
|
|
//! [`expect`]: enum.Result.html#method.expect
|
|
|
|
//! [`Write`]: ../../std/io/trait.Write.html
|
|
|
|
//! [`write_all`]: ../../std/io/trait.Write.html#method.write_all
|
|
|
|
//! [`io::Result`]: ../../std/io/type.Result.html
|
2017-02-11 20:02:55 -06:00
|
|
|
//! [`?`]: ../../std/macro.try.html
|
2016-09-09 09:08:04 -05:00
|
|
|
//! [`Result`]: enum.Result.html
|
|
|
|
//! [`Ok(T)`]: enum.Result.html#variant.Ok
|
|
|
|
//! [`Err(E)`]: enum.Result.html#variant.Err
|
|
|
|
//! [`io::Error`]: ../../std/io/struct.Error.html
|
|
|
|
//! [`Ok`]: enum.Result.html#variant.Ok
|
|
|
|
//! [`Err`]: enum.Result.html#variant.Err
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#![stable(feature = "rust1", since = "1.0.0")]
|
2014-08-19 15:45:28 -05:00
|
|
|
|
2019-04-14 21:23:21 -05:00
|
|
|
use crate::fmt;
|
2019-07-22 17:55:18 -05:00
|
|
|
use crate::iter::{FromIterator, FusedIterator, TrustedLen, ResultShunt};
|
2019-07-05 12:37:34 -05:00
|
|
|
use crate::ops::{self, Deref, DerefMut};
|
2013-08-03 18:59:24 -05:00
|
|
|
|
2017-08-18 09:41:54 -05:00
|
|
|
/// `Result` is a type that represents either success ([`Ok`]) or failure ([`Err`]).
|
2014-04-12 18:33:21 -05:00
|
|
|
///
|
|
|
|
/// See the [`std::result`](index.html) module documentation for details.
|
2017-08-18 09:41:54 -05:00
|
|
|
///
|
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
|
|
|
/// [`Err`]: enum.Result.html#variant.Err
|
2019-05-30 05:50:06 -05:00
|
|
|
#[derive(Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)]
|
2018-05-07 11:18:12 -05:00
|
|
|
#[must_use = "this `Result` may be an `Err` variant, which should be handled"]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2013-08-03 18:59:24 -05:00
|
|
|
pub enum Result<T, E> {
|
2013-12-06 15:23:23 -06:00
|
|
|
/// Contains the success value
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2016-02-19 18:08:36 -06:00
|
|
|
Ok(#[stable(feature = "rust1", since = "1.0.0")] T),
|
2013-12-06 15:23:23 -06:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Contains the error value
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2016-04-08 19:00:12 -05:00
|
|
|
Err(#[stable(feature = "rust1", since = "1.0.0")] E),
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Type implementation
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-12-06 15:23:23 -06:00
|
|
|
impl<T, E> Result<T, E> {
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Querying the contained values
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2013-04-10 15:11:35 -05:00
|
|
|
|
2017-08-18 09:41:54 -05:00
|
|
|
/// Returns `true` if the result is [`Ok`].
|
|
|
|
///
|
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
2014-04-12 18:33:21 -05:00
|
|
|
///
|
2015-03-11 20:11:40 -05:00
|
|
|
/// # Examples
|
2014-04-12 18:33:21 -05:00
|
|
|
///
|
2016-04-08 19:00:12 -05:00
|
|
|
/// Basic usage:
|
|
|
|
///
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
2015-03-25 19:06:52 -05:00
|
|
|
/// let x: Result<i32, &str> = Ok(-3);
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.is_ok(), true);
|
|
|
|
///
|
2015-03-25 19:06:52 -05:00
|
|
|
/// let x: Result<i32, &str> = Err("Some error message");
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.is_ok(), false);
|
|
|
|
/// ```
|
2019-07-05 22:57:25 -05:00
|
|
|
#[must_use = "if you intended to assert that this is ok, consider `.unwrap()` instead"]
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2013-07-26 20:03:44 -05:00
|
|
|
pub fn is_ok(&self) -> bool {
|
|
|
|
match *self {
|
|
|
|
Ok(_) => true,
|
|
|
|
Err(_) => false
|
|
|
|
}
|
|
|
|
}
|
2012-04-01 17:44:01 -05:00
|
|
|
|
2017-08-18 09:41:54 -05:00
|
|
|
/// Returns `true` if the result is [`Err`].
|
|
|
|
///
|
|
|
|
/// [`Err`]: enum.Result.html#variant.Err
|
2014-04-12 18:33:21 -05:00
|
|
|
///
|
2015-03-11 20:11:40 -05:00
|
|
|
/// # Examples
|
2014-04-12 18:33:21 -05:00
|
|
|
///
|
2016-04-08 19:00:12 -05:00
|
|
|
/// Basic usage:
|
|
|
|
///
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
2015-03-25 19:06:52 -05:00
|
|
|
/// let x: Result<i32, &str> = Ok(-3);
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.is_err(), false);
|
2014-04-12 18:33:21 -05:00
|
|
|
///
|
2015-03-25 19:06:52 -05:00
|
|
|
/// let x: Result<i32, &str> = Err("Some error message");
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.is_err(), true);
|
|
|
|
/// ```
|
2019-07-05 22:57:25 -05:00
|
|
|
#[must_use = "if you intended to assert that this is err, consider `.unwrap_err()` instead"]
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2013-07-26 20:03:44 -05:00
|
|
|
pub fn is_err(&self) -> bool {
|
|
|
|
!self.is_ok()
|
|
|
|
}
|
2012-04-01 17:44:01 -05:00
|
|
|
|
2019-07-03 18:38:22 -05:00
|
|
|
/// Returns `true` if the result is an [`Ok`] value containing the given value.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// #![feature(option_result_contains)]
|
|
|
|
///
|
|
|
|
/// let x: Result<u32, &str> = Ok(2);
|
|
|
|
/// assert_eq!(x.contains(&2), true);
|
|
|
|
///
|
|
|
|
/// let x: Result<u32, &str> = Ok(3);
|
|
|
|
/// assert_eq!(x.contains(&2), false);
|
|
|
|
///
|
|
|
|
/// let x: Result<u32, &str> = Err("Some error message");
|
|
|
|
/// assert_eq!(x.contains(&2), false);
|
|
|
|
/// ```
|
|
|
|
#[must_use]
|
|
|
|
#[inline]
|
|
|
|
#[unstable(feature = "option_result_contains", issue = "62358")]
|
|
|
|
pub fn contains<U>(&self, x: &U) -> bool where U: PartialEq<T> {
|
|
|
|
match self {
|
|
|
|
Ok(y) => x == y,
|
|
|
|
Err(_) => false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns `true` if the result is an [`Err`] value containing the given value.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// #![feature(result_contains_err)]
|
|
|
|
///
|
|
|
|
/// let x: Result<u32, &str> = Ok(2);
|
|
|
|
/// assert_eq!(x.contains_err(&"Some error message"), false);
|
|
|
|
///
|
|
|
|
/// let x: Result<u32, &str> = Err("Some error message");
|
|
|
|
/// assert_eq!(x.contains_err(&"Some error message"), true);
|
|
|
|
///
|
|
|
|
/// let x: Result<u32, &str> = Err("Some other error message");
|
|
|
|
/// assert_eq!(x.contains_err(&"Some error message"), false);
|
|
|
|
/// ```
|
|
|
|
#[must_use]
|
|
|
|
#[inline]
|
|
|
|
#[unstable(feature = "result_contains_err", issue = "62358")]
|
|
|
|
pub fn contains_err<F>(&self, f: &F) -> bool where F: PartialEq<E> {
|
|
|
|
match self {
|
|
|
|
Ok(_) => false,
|
|
|
|
Err(e) => f == e
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2013-12-06 15:23:23 -06:00
|
|
|
// Adapter for each variant
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-09-09 09:08:04 -05:00
|
|
|
/// Converts from `Result<T, E>` to [`Option<T>`].
|
2014-04-12 18:33:21 -05:00
|
|
|
///
|
2016-09-09 09:08:04 -05:00
|
|
|
/// Converts `self` into an [`Option<T>`], consuming `self`,
|
2014-04-12 18:33:21 -05:00
|
|
|
/// and discarding the error, if any.
|
|
|
|
///
|
2016-09-09 09:08:04 -05:00
|
|
|
/// [`Option<T>`]: ../../std/option/enum.Option.html
|
|
|
|
///
|
2015-03-11 20:11:40 -05:00
|
|
|
/// # Examples
|
2014-04-12 18:33:21 -05:00
|
|
|
///
|
2016-04-08 19:00:12 -05:00
|
|
|
/// Basic usage:
|
|
|
|
///
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Ok(2);
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.ok(), Some(2));
|
2014-04-12 18:33:21 -05:00
|
|
|
///
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Err("Nothing here");
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.ok(), None);
|
|
|
|
/// ```
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2013-12-06 15:23:23 -06:00
|
|
|
pub fn ok(self) -> Option<T> {
|
2013-07-26 20:03:57 -05:00
|
|
|
match self {
|
2013-12-06 15:23:23 -06:00
|
|
|
Ok(x) => Some(x),
|
|
|
|
Err(_) => None,
|
2013-07-26 20:03:57 -05:00
|
|
|
}
|
|
|
|
}
|
2012-12-18 20:55:19 -06:00
|
|
|
|
2016-09-09 09:08:04 -05:00
|
|
|
/// Converts from `Result<T, E>` to [`Option<E>`].
|
2014-04-12 18:33:21 -05:00
|
|
|
///
|
2016-09-09 09:08:04 -05:00
|
|
|
/// Converts `self` into an [`Option<E>`], consuming `self`,
|
2015-03-18 07:36:23 -05:00
|
|
|
/// and discarding the success value, if any.
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2016-09-09 09:08:04 -05:00
|
|
|
/// [`Option<E>`]: ../../std/option/enum.Option.html
|
|
|
|
///
|
2015-03-11 20:11:40 -05:00
|
|
|
/// # Examples
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2016-04-08 19:00:12 -05:00
|
|
|
/// Basic usage:
|
|
|
|
///
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Ok(2);
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.err(), None);
|
|
|
|
///
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Err("Nothing here");
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.err(), Some("Nothing here"));
|
|
|
|
/// ```
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2013-12-06 15:23:23 -06:00
|
|
|
pub fn err(self) -> Option<E> {
|
2013-10-31 17:09:24 -05:00
|
|
|
match self {
|
2013-12-06 15:23:23 -06:00
|
|
|
Ok(_) => None,
|
|
|
|
Err(x) => Some(x),
|
2013-10-31 17:09:24 -05:00
|
|
|
}
|
2013-08-03 18:59:24 -05:00
|
|
|
}
|
|
|
|
|
2013-12-06 15:23:23 -06:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Adapter for working with references
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2019-03-15 15:42:10 -05:00
|
|
|
/// Converts from `&Result<T, E>` to `Result<&T, &E>`.
|
2014-04-12 18:33:21 -05:00
|
|
|
///
|
|
|
|
/// Produces a new `Result`, containing a reference
|
|
|
|
/// into the original, leaving the original in place.
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2016-04-08 19:00:12 -05:00
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// Basic usage:
|
|
|
|
///
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Ok(2);
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.as_ref(), Ok(&2));
|
|
|
|
///
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Err("Error");
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.as_ref(), Err(&"Error"));
|
|
|
|
/// ```
|
2013-08-03 18:59:24 -05:00
|
|
|
#[inline]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
pub fn as_ref(&self) -> Result<&T, &E> {
|
2013-12-06 15:23:23 -06:00
|
|
|
match *self {
|
|
|
|
Ok(ref x) => Ok(x),
|
|
|
|
Err(ref x) => Err(x),
|
2013-08-03 18:59:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-15 15:42:10 -05:00
|
|
|
/// Converts from `&mut Result<T, E>` to `Result<&mut T, &mut E>`.
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2016-04-08 19:00:12 -05:00
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// Basic usage:
|
|
|
|
///
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
2015-03-25 19:06:52 -05:00
|
|
|
/// fn mutate(r: &mut Result<i32, i32>) {
|
2014-09-16 10:09:24 -05:00
|
|
|
/// match r.as_mut() {
|
2016-08-10 01:14:57 -05:00
|
|
|
/// Ok(v) => *v = 42,
|
|
|
|
/// Err(e) => *e = 0,
|
2014-09-16 10:09:24 -05:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
2015-03-25 19:06:52 -05:00
|
|
|
/// let mut x: Result<i32, i32> = Ok(2);
|
2014-09-16 10:09:24 -05:00
|
|
|
/// mutate(&mut x);
|
|
|
|
/// assert_eq!(x.unwrap(), 42);
|
|
|
|
///
|
2015-03-25 19:06:52 -05:00
|
|
|
/// let mut x: Result<i32, i32> = Err(13);
|
2014-09-16 10:09:24 -05:00
|
|
|
/// mutate(&mut x);
|
|
|
|
/// assert_eq!(x.unwrap_err(), 0);
|
|
|
|
/// ```
|
2013-08-03 18:59:24 -05:00
|
|
|
#[inline]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
pub fn as_mut(&mut self) -> Result<&mut T, &mut E> {
|
2013-12-06 15:23:23 -06:00
|
|
|
match *self {
|
|
|
|
Ok(ref mut x) => Ok(x),
|
|
|
|
Err(ref mut x) => Err(x),
|
2013-07-26 20:03:57 -05:00
|
|
|
}
|
|
|
|
}
|
2012-12-18 20:55:19 -06:00
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Transforming contained values
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2015-11-11 17:01:55 -06:00
|
|
|
/// Maps a `Result<T, E>` to `Result<U, E>` by applying a function to a
|
2017-08-18 09:41:54 -05:00
|
|
|
/// contained [`Ok`] value, leaving an [`Err`] value untouched.
|
2013-08-04 18:05:25 -05:00
|
|
|
///
|
2013-10-31 17:09:24 -05:00
|
|
|
/// This function can be used to compose the results of two functions.
|
2013-08-04 18:05:25 -05:00
|
|
|
///
|
2017-08-18 09:41:54 -05:00
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
|
|
|
/// [`Err`]: enum.Result.html#variant.Err
|
|
|
|
///
|
2015-03-11 20:11:40 -05:00
|
|
|
/// # Examples
|
2014-04-12 18:33:21 -05:00
|
|
|
///
|
2015-04-10 15:23:17 -05:00
|
|
|
/// Print the numbers on each line of a string multiplied by two.
|
2014-04-12 18:33:21 -05:00
|
|
|
///
|
2014-09-16 06:27:34 -05:00
|
|
|
/// ```
|
2015-04-10 15:23:17 -05:00
|
|
|
/// let line = "1\n2\n3\n4\n";
|
2014-04-12 18:33:21 -05:00
|
|
|
///
|
2015-04-10 15:23:17 -05:00
|
|
|
/// for num in line.lines() {
|
|
|
|
/// match num.parse::<i32>().map(|i| i * 2) {
|
|
|
|
/// Ok(n) => println!("{}", n),
|
|
|
|
/// Err(..) => {}
|
|
|
|
/// }
|
2014-04-12 18:33:21 -05:00
|
|
|
/// }
|
2014-09-16 06:27:34 -05:00
|
|
|
/// ```
|
2013-08-04 18:05:25 -05:00
|
|
|
#[inline]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-12-02 11:47:07 -06:00
|
|
|
pub fn map<U, F: FnOnce(T) -> U>(self, op: F) -> Result<U,E> {
|
2013-08-04 18:05:25 -05:00
|
|
|
match self {
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
Ok(t) => Ok(op(t)),
|
|
|
|
Err(e) => Err(e)
|
2013-08-04 18:05:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-29 16:55:21 -05:00
|
|
|
/// Maps a `Result<T, E>` to `U` by applying a function to a
|
2018-08-28 20:06:22 -05:00
|
|
|
/// contained [`Ok`] value, or a fallback function to a
|
|
|
|
/// contained [`Err`] value.
|
|
|
|
///
|
|
|
|
/// This function can be used to unpack a successful result
|
|
|
|
/// while handling an error.
|
|
|
|
///
|
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
|
|
|
/// [`Err`]: enum.Result.html#variant.Err
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// Basic usage:
|
|
|
|
///
|
|
|
|
/// ```
|
2018-08-29 18:51:09 -05:00
|
|
|
/// #![feature(result_map_or_else)]
|
2018-08-28 20:06:22 -05:00
|
|
|
/// let k = 21;
|
|
|
|
///
|
2018-08-29 08:58:27 -05:00
|
|
|
/// let x : Result<_, &str> = Ok("foo");
|
2018-08-28 20:06:22 -05:00
|
|
|
/// assert_eq!(x.map_or_else(|e| k * 2, |v| v.len()), 3);
|
|
|
|
///
|
2018-08-29 08:58:27 -05:00
|
|
|
/// let x : Result<&str, _> = Err("bar");
|
2018-08-28 20:06:22 -05:00
|
|
|
/// assert_eq!(x.map_or_else(|e| k * 2, |v| v.len()), 42);
|
|
|
|
/// ```
|
|
|
|
#[inline]
|
2018-08-29 16:51:54 -05:00
|
|
|
#[unstable(feature = "result_map_or_else", issue = "53268")]
|
2018-08-28 20:06:22 -05:00
|
|
|
pub fn map_or_else<U, M: FnOnce(T) -> U, F: FnOnce(E) -> U>(self, fallback: F, map: M) -> U {
|
|
|
|
self.map(map).unwrap_or_else(fallback)
|
|
|
|
}
|
|
|
|
|
2015-11-11 17:01:55 -06:00
|
|
|
/// Maps a `Result<T, E>` to `Result<T, F>` by applying a function to a
|
2017-08-18 09:41:54 -05:00
|
|
|
/// contained [`Err`] value, leaving an [`Ok`] value untouched.
|
2013-08-04 18:05:25 -05:00
|
|
|
///
|
2013-10-31 17:09:24 -05:00
|
|
|
/// This function can be used to pass through a successful result while handling
|
|
|
|
/// an error.
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2017-08-18 09:41:54 -05:00
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
|
|
|
/// [`Err`]: enum.Result.html#variant.Err
|
|
|
|
///
|
2015-03-11 20:11:40 -05:00
|
|
|
/// # Examples
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2016-04-08 19:00:12 -05:00
|
|
|
/// Basic usage:
|
|
|
|
///
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
2015-02-15 09:24:47 -06:00
|
|
|
/// fn stringify(x: u32) -> String { format!("error code: {}", x) }
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, u32> = Ok(2);
|
2015-01-22 08:08:56 -06:00
|
|
|
/// assert_eq!(x.map_err(stringify), Ok(2));
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, u32> = Err(13);
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.map_err(stringify), Err("error code: 13".to_string()));
|
|
|
|
/// ```
|
2013-08-04 18:05:25 -05:00
|
|
|
#[inline]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-12-02 11:47:07 -06:00
|
|
|
pub fn map_err<F, O: FnOnce(E) -> F>(self, op: O) -> Result<T,F> {
|
2013-08-04 18:05:25 -05:00
|
|
|
match self {
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
Ok(t) => Ok(t),
|
|
|
|
Err(e) => Err(op(e))
|
2013-08-04 18:05:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-19 15:45:28 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Iterator constructors
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/// Returns an iterator over the possibly contained value.
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2018-07-01 11:51:39 -05:00
|
|
|
/// The iterator yields one value if the result is [`Result::Ok`], otherwise none.
|
2016-12-03 15:05:05 -06:00
|
|
|
///
|
2015-03-11 20:11:40 -05:00
|
|
|
/// # Examples
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2016-04-08 19:00:12 -05:00
|
|
|
/// Basic usage:
|
|
|
|
///
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Ok(7);
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.iter().next(), Some(&7));
|
|
|
|
///
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Err("nothing!");
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.iter().next(), None);
|
|
|
|
/// ```
|
2014-08-19 15:45:28 -05:00
|
|
|
#[inline]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-04-18 18:37:12 -05:00
|
|
|
pub fn iter(&self) -> Iter<'_, T> {
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
Iter { inner: self.as_ref().ok() }
|
2014-08-19 15:45:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns a mutable iterator over the possibly contained value.
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2018-07-01 11:51:39 -05:00
|
|
|
/// The iterator yields one value if the result is [`Result::Ok`], otherwise none.
|
2016-12-03 15:05:05 -06:00
|
|
|
///
|
2015-03-11 20:11:40 -05:00
|
|
|
/// # Examples
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2016-04-08 19:00:12 -05:00
|
|
|
/// Basic usage:
|
|
|
|
///
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let mut x: Result<u32, &str> = Ok(7);
|
2014-09-16 10:09:24 -05:00
|
|
|
/// match x.iter_mut().next() {
|
2015-09-16 03:17:38 -05:00
|
|
|
/// Some(v) => *v = 40,
|
2014-09-16 10:09:24 -05:00
|
|
|
/// None => {},
|
|
|
|
/// }
|
|
|
|
/// assert_eq!(x, Ok(40));
|
|
|
|
///
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let mut x: Result<u32, &str> = Err("nothing!");
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.iter_mut().next(), None);
|
|
|
|
/// ```
|
2014-08-19 15:45:28 -05:00
|
|
|
#[inline]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-04-18 18:37:12 -05:00
|
|
|
pub fn iter_mut(&mut self) -> IterMut<'_, T> {
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
IterMut { inner: self.as_mut().ok() }
|
2014-08-19 15:45:28 -05:00
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// Boolean operations on the values, eager and lazy
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-08-18 09:41:54 -05:00
|
|
|
/// Returns `res` if the result is [`Ok`], otherwise returns the [`Err`] value of `self`.
|
|
|
|
///
|
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
|
|
|
/// [`Err`]: enum.Result.html#variant.Err
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2015-03-11 20:11:40 -05:00
|
|
|
/// # Examples
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2016-04-08 19:00:12 -05:00
|
|
|
/// Basic usage:
|
|
|
|
///
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Ok(2);
|
2014-09-16 10:09:24 -05:00
|
|
|
/// let y: Result<&str, &str> = Err("late error");
|
|
|
|
/// assert_eq!(x.and(y), Err("late error"));
|
|
|
|
///
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Err("early error");
|
2014-09-16 10:09:24 -05:00
|
|
|
/// let y: Result<&str, &str> = Ok("foo");
|
|
|
|
/// assert_eq!(x.and(y), Err("early error"));
|
|
|
|
///
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Err("not a 2");
|
2014-09-16 10:09:24 -05:00
|
|
|
/// let y: Result<&str, &str> = Err("late error");
|
|
|
|
/// assert_eq!(x.and(y), Err("not a 2"));
|
|
|
|
///
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Ok(2);
|
2014-09-16 10:09:24 -05:00
|
|
|
/// let y: Result<&str, &str> = Ok("different result type");
|
|
|
|
/// assert_eq!(x.and(y), Ok("different result type"));
|
|
|
|
/// ```
|
2013-10-31 17:09:24 -05:00
|
|
|
#[inline]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2013-10-31 17:09:24 -05:00
|
|
|
pub fn and<U>(self, res: Result<U, E>) -> Result<U, E> {
|
2013-09-11 14:52:17 -05:00
|
|
|
match self {
|
|
|
|
Ok(_) => res,
|
2013-10-31 17:09:24 -05:00
|
|
|
Err(e) => Err(e),
|
2013-09-11 14:52:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-18 09:41:54 -05:00
|
|
|
/// Calls `op` if the result is [`Ok`], otherwise returns the [`Err`] value of `self`.
|
|
|
|
///
|
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
|
|
|
/// [`Err`]: enum.Result.html#variant.Err
|
2013-08-03 18:59:24 -05:00
|
|
|
///
|
2016-09-09 09:08:04 -05:00
|
|
|
/// This function can be used for control flow based on `Result` values.
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2015-03-11 20:11:40 -05:00
|
|
|
/// # Examples
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2016-04-08 19:00:12 -05:00
|
|
|
/// Basic usage:
|
|
|
|
///
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
2015-02-15 09:24:47 -06:00
|
|
|
/// fn sq(x: u32) -> Result<u32, u32> { Ok(x * x) }
|
|
|
|
/// fn err(x: u32) -> Result<u32, u32> { Err(x) }
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
|
|
|
/// assert_eq!(Ok(2).and_then(sq).and_then(sq), Ok(16));
|
|
|
|
/// assert_eq!(Ok(2).and_then(sq).and_then(err), Err(4));
|
|
|
|
/// assert_eq!(Ok(2).and_then(err).and_then(sq), Err(2));
|
|
|
|
/// assert_eq!(Err(3).and_then(sq).and_then(sq), Err(3));
|
|
|
|
/// ```
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-12-02 11:47:07 -06:00
|
|
|
pub fn and_then<U, F: FnOnce(T) -> Result<U, E>>(self, op: F) -> Result<U, E> {
|
2013-07-22 19:27:53 -05:00
|
|
|
match self {
|
|
|
|
Ok(t) => op(t),
|
2013-07-24 22:41:13 -05:00
|
|
|
Err(e) => Err(e),
|
2013-07-22 19:27:53 -05:00
|
|
|
}
|
2012-05-26 22:33:08 -05:00
|
|
|
}
|
|
|
|
|
2017-08-18 09:41:54 -05:00
|
|
|
/// Returns `res` if the result is [`Err`], otherwise returns the [`Ok`] value of `self`.
|
|
|
|
///
|
2017-12-06 19:30:57 -06:00
|
|
|
/// Arguments passed to `or` are eagerly evaluated; if you are passing the
|
2017-12-07 11:19:24 -06:00
|
|
|
/// result of a function call, it is recommended to use [`or_else`], which is
|
2017-12-06 19:30:57 -06:00
|
|
|
/// lazily evaluated.
|
|
|
|
///
|
2017-08-18 09:41:54 -05:00
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
|
|
|
/// [`Err`]: enum.Result.html#variant.Err
|
2017-12-07 11:19:24 -06:00
|
|
|
/// [`or_else`]: #method.or_else
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2015-03-11 20:11:40 -05:00
|
|
|
/// # Examples
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2016-04-08 19:00:12 -05:00
|
|
|
/// Basic usage:
|
|
|
|
///
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Ok(2);
|
|
|
|
/// let y: Result<u32, &str> = Err("late error");
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.or(y), Ok(2));
|
|
|
|
///
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Err("early error");
|
|
|
|
/// let y: Result<u32, &str> = Ok(2);
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.or(y), Ok(2));
|
|
|
|
///
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Err("not a 2");
|
|
|
|
/// let y: Result<u32, &str> = Err("late error");
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.or(y), Err("late error"));
|
|
|
|
///
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Ok(2);
|
|
|
|
/// let y: Result<u32, &str> = Ok(100);
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.or(y), Ok(2));
|
|
|
|
/// ```
|
2013-09-11 14:52:17 -05:00
|
|
|
#[inline]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-25 12:37:22 -06:00
|
|
|
pub fn or<F>(self, res: Result<T, F>) -> Result<T, F> {
|
2013-09-11 14:52:17 -05:00
|
|
|
match self {
|
2015-02-25 12:37:22 -06:00
|
|
|
Ok(v) => Ok(v),
|
2013-09-11 14:52:17 -05:00
|
|
|
Err(_) => res,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-18 09:41:54 -05:00
|
|
|
/// Calls `op` if the result is [`Err`], otherwise returns the [`Ok`] value of `self`.
|
2013-08-03 18:59:24 -05:00
|
|
|
///
|
2014-09-16 10:09:24 -05:00
|
|
|
/// This function can be used for control flow based on result values.
|
|
|
|
///
|
2017-08-18 09:41:54 -05:00
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
|
|
|
/// [`Err`]: enum.Result.html#variant.Err
|
|
|
|
///
|
2015-03-11 20:11:40 -05:00
|
|
|
/// # Examples
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2016-04-08 19:00:12 -05:00
|
|
|
/// Basic usage:
|
|
|
|
///
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
2015-02-15 09:24:47 -06:00
|
|
|
/// fn sq(x: u32) -> Result<u32, u32> { Ok(x * x) }
|
|
|
|
/// fn err(x: u32) -> Result<u32, u32> { Err(x) }
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
|
|
|
/// assert_eq!(Ok(2).or_else(sq).or_else(sq), Ok(2));
|
|
|
|
/// assert_eq!(Ok(2).or_else(err).or_else(sq), Ok(2));
|
|
|
|
/// assert_eq!(Err(3).or_else(sq).or_else(err), Ok(9));
|
|
|
|
/// assert_eq!(Err(3).or_else(err).or_else(err), Err(3));
|
|
|
|
/// ```
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-12-02 11:47:07 -06:00
|
|
|
pub fn or_else<F, O: FnOnce(E) -> Result<T, F>>(self, op: O) -> Result<T, F> {
|
2013-07-22 19:27:53 -05:00
|
|
|
match self {
|
|
|
|
Ok(t) => Ok(t),
|
2013-07-24 22:41:13 -05:00
|
|
|
Err(e) => op(e),
|
2013-07-22 19:27:53 -05:00
|
|
|
}
|
2012-05-26 22:33:08 -05:00
|
|
|
}
|
2012-06-22 19:32:52 -05:00
|
|
|
|
2017-08-18 09:41:54 -05:00
|
|
|
/// Unwraps a result, yielding the content of an [`Ok`].
|
2016-09-09 09:08:04 -05:00
|
|
|
/// Else, it returns `optb`.
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2017-12-07 11:19:24 -06:00
|
|
|
/// Arguments passed to `unwrap_or` are eagerly evaluated; if you are passing
|
|
|
|
/// the result of a function call, it is recommended to use [`unwrap_or_else`],
|
|
|
|
/// which is lazily evaluated.
|
2017-12-06 19:30:57 -06:00
|
|
|
///
|
2017-08-18 09:41:54 -05:00
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
|
|
|
/// [`Err`]: enum.Result.html#variant.Err
|
2017-12-07 11:19:24 -06:00
|
|
|
/// [`unwrap_or_else`]: #method.unwrap_or_else
|
2017-08-18 09:41:54 -05:00
|
|
|
///
|
2015-03-11 20:11:40 -05:00
|
|
|
/// # Examples
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2016-04-08 19:00:12 -05:00
|
|
|
/// Basic usage:
|
|
|
|
///
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
2015-01-22 08:08:56 -06:00
|
|
|
/// let optb = 2;
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Ok(9);
|
2015-01-22 08:08:56 -06:00
|
|
|
/// assert_eq!(x.unwrap_or(optb), 9);
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Err("error");
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.unwrap_or(optb), optb);
|
|
|
|
/// ```
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-04-11 22:59:18 -05:00
|
|
|
pub fn unwrap_or(self, optb: T) -> T {
|
2013-12-06 15:23:23 -06:00
|
|
|
match self {
|
|
|
|
Ok(t) => t,
|
2014-04-11 22:59:18 -05:00
|
|
|
Err(_) => optb
|
2013-12-06 15:23:23 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-18 09:41:54 -05:00
|
|
|
/// Unwraps a result, yielding the content of an [`Ok`].
|
|
|
|
/// If the value is an [`Err`] then it calls `op` with its value.
|
|
|
|
///
|
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
|
|
|
/// [`Err`]: enum.Result.html#variant.Err
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2015-03-11 20:11:40 -05:00
|
|
|
/// # Examples
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2016-04-08 19:00:12 -05:00
|
|
|
/// Basic usage:
|
|
|
|
///
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
2015-02-15 09:24:47 -06:00
|
|
|
/// fn count(x: &str) -> usize { x.len() }
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2015-01-22 08:08:56 -06:00
|
|
|
/// assert_eq!(Ok(2).unwrap_or_else(count), 2);
|
|
|
|
/// assert_eq!(Err("foo").unwrap_or_else(count), 3);
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
2014-04-11 21:18:02 -05:00
|
|
|
#[inline]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-12-02 11:47:07 -06:00
|
|
|
pub fn unwrap_or_else<F: FnOnce(E) -> T>(self, op: F) -> T {
|
2014-04-11 21:18:02 -05:00
|
|
|
match self {
|
|
|
|
Ok(t) => t,
|
2014-04-11 22:59:18 -05:00
|
|
|
Err(e) => op(e)
|
2014-04-11 21:18:02 -05:00
|
|
|
}
|
|
|
|
}
|
2014-04-11 22:59:18 -05:00
|
|
|
}
|
2014-04-11 21:18:02 -05:00
|
|
|
|
std: Stabilize the std::fmt module
This commit performs a final stabilization pass over the std::fmt module,
marking all necessary APIs as stable. One of the more interesting aspects of
this module is that it exposes a good deal of its runtime representation to the
outside world in order for `format_args!` to be able to construct the format
strings. Instead of hacking the compiler to assume that these items are stable,
this commit instead lays out a story for the stabilization and evolution of
these APIs.
There are three primary details used by the `format_args!` macro:
1. `Arguments` - an opaque package of a "compiled format string". This structure
is passed around and the `write` function is the source of truth for
transforming a compiled format string into a string at runtime. This must be
able to be constructed in stable code.
2. `Argument` - an opaque structure representing an argument to a format string.
This is *almost* a trait object as it's just a pointer/function pair, but due
to the function originating from one of many traits, it's not actually a
trait object. Like `Arguments`, this must be constructed from stable code.
3. `fmt::rt` - this module contains the runtime type definitions primarily for
the `rt::Argument` structure. Whenever an argument is formatted with
nonstandard flags, a corresponding `rt::Argument` is generated describing how
the argument is being formatted. This can be used to construct an
`Arguments`.
The primary interface to `std::fmt` is the `Arguments` structure, and as such
this type name is stabilize as-is today. It is expected for libraries to pass
around an `Arguments` structure to represent a pending formatted computation.
The remaining portions are largely "cruft" which would rather not be stabilized,
but due to the stability checks they must be. As a result, almost all pieces
have been renamed to represent that they are "version 1" of the formatting
representation. The theory is that at a later date if we change the
representation of these types we can add new definitions called "version 2" and
corresponding constructors for `Arguments`.
One of the other remaining large questions about the fmt module were how the
pending I/O reform would affect the signatures of methods in the module. Due to
[RFC 526][rfc], however, the writers of fmt are now incompatible with the
writers of io, so this question has largely been solved. As a result the
interfaces are largely stabilized as-is today.
[rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0526-fmt-text-writer.md
Specifically, the following changes were made:
* The contents of `fmt::rt` were all moved under `fmt::rt::v1`
* `fmt::rt` is stable
* `fmt::rt::v1` is stable
* `Error` is stable
* `Writer` is stable
* `Writer::write_str` is stable
* `Writer::write_fmt` is stable
* `Formatter` is stable
* `Argument` has been renamed to `ArgumentV1` and is stable
* `ArgumentV1::new` is stable
* `ArgumentV1::from_uint` is stable
* `Arguments::new_v1` is stable (renamed from `new`)
* `Arguments::new_v1_formatted` is stable (renamed from `with_placeholders`)
* All formatting traits are now stable, as well as the `fmt` method.
* `fmt::write` is stable
* `fmt::format` is stable
* `Formatter::pad_integral` is stable
* `Formatter::pad` is stable
* `Formatter::write_str` is stable
* `Formatter::write_fmt` is stable
* Some assorted top level items which were only used by `format_args!` were
removed in favor of static functions on `ArgumentV1` as well.
* The formatting-flag-accessing methods remain unstable
Within the contents of the `fmt::rt::v1` module, the following actions were
taken:
* Reexports of all enum variants were removed
* All prefixes on enum variants were removed
* A few miscellaneous enum variants were renamed
* Otherwise all structs, fields, and variants were marked stable.
In addition to these actions in the `std::fmt` module, many implementations of
`Show` and `String` were stabilized as well.
In some other modules:
* `ToString` is now stable
* `ToString::to_string` is now stable
* `Vec` no longer implements `fmt::Writer` (this has moved to `String`)
This is a breaking change due to all of the changes to the `fmt::rt` module, but
this likely will not have much impact on existing programs.
Closes #20661
[breaking-change]
2015-01-13 17:42:53 -06:00
|
|
|
impl<T, E: fmt::Debug> Result<T, E> {
|
2017-08-18 09:41:54 -05:00
|
|
|
/// Unwraps a result, yielding the content of an [`Ok`].
|
2014-05-10 15:46:05 -05:00
|
|
|
///
|
2014-10-09 14:17:22 -05:00
|
|
|
/// # Panics
|
2014-07-12 10:02:15 -05:00
|
|
|
///
|
2017-08-18 09:41:54 -05:00
|
|
|
/// Panics if the value is an [`Err`], with a panic message provided by the
|
|
|
|
/// [`Err`]'s value.
|
|
|
|
///
|
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
|
|
|
/// [`Err`]: enum.Result.html#variant.Err
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2015-03-11 20:11:40 -05:00
|
|
|
/// # Examples
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2016-04-08 19:00:12 -05:00
|
|
|
/// Basic usage:
|
|
|
|
///
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Ok(2);
|
2015-01-22 08:08:56 -06:00
|
|
|
/// assert_eq!(x.unwrap(), 2);
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
|
|
|
///
|
2015-03-26 15:30:33 -05:00
|
|
|
/// ```{.should_panic}
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Err("emergency failure");
|
2014-10-09 14:17:22 -05:00
|
|
|
/// x.unwrap(); // panics with `emergency failure`
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
2014-05-10 15:46:05 -05:00
|
|
|
#[inline]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-05-10 15:46:05 -05:00
|
|
|
pub fn unwrap(self) -> T {
|
|
|
|
match self {
|
|
|
|
Ok(t) => t,
|
2019-07-11 14:40:38 -05:00
|
|
|
Err(e) => unwrap_failed("called `Result::unwrap()` on an `Err` value", &e),
|
2014-05-10 15:46:05 -05:00
|
|
|
}
|
|
|
|
}
|
2015-06-13 09:34:58 -05:00
|
|
|
|
2017-08-18 09:41:54 -05:00
|
|
|
/// Unwraps a result, yielding the content of an [`Ok`].
|
2015-06-13 09:34:58 -05:00
|
|
|
///
|
2015-12-10 07:20:32 -06:00
|
|
|
/// # Panics
|
|
|
|
///
|
2017-08-18 09:41:54 -05:00
|
|
|
/// Panics if the value is an [`Err`], with a panic message including the
|
|
|
|
/// passed message, and the content of the [`Err`].
|
|
|
|
///
|
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
|
|
|
/// [`Err`]: enum.Result.html#variant.Err
|
2015-06-13 09:34:58 -05:00
|
|
|
///
|
|
|
|
/// # Examples
|
2016-04-08 19:00:12 -05:00
|
|
|
///
|
|
|
|
/// Basic usage:
|
|
|
|
///
|
2015-06-13 09:34:58 -05:00
|
|
|
/// ```{.should_panic}
|
|
|
|
/// let x: Result<u32, &str> = Err("emergency failure");
|
|
|
|
/// x.expect("Testing expect"); // panics with `Testing expect: emergency failure`
|
|
|
|
/// ```
|
|
|
|
#[inline]
|
2015-09-10 15:26:44 -05:00
|
|
|
#[stable(feature = "result_expect", since = "1.4.0")]
|
2015-06-13 09:34:58 -05:00
|
|
|
pub fn expect(self, msg: &str) -> T {
|
|
|
|
match self {
|
|
|
|
Ok(t) => t,
|
2019-07-11 14:40:38 -05:00
|
|
|
Err(e) => unwrap_failed(msg, &e),
|
2015-06-13 09:34:58 -05:00
|
|
|
}
|
|
|
|
}
|
2014-05-10 15:46:05 -05:00
|
|
|
}
|
|
|
|
|
std: Stabilize the std::fmt module
This commit performs a final stabilization pass over the std::fmt module,
marking all necessary APIs as stable. One of the more interesting aspects of
this module is that it exposes a good deal of its runtime representation to the
outside world in order for `format_args!` to be able to construct the format
strings. Instead of hacking the compiler to assume that these items are stable,
this commit instead lays out a story for the stabilization and evolution of
these APIs.
There are three primary details used by the `format_args!` macro:
1. `Arguments` - an opaque package of a "compiled format string". This structure
is passed around and the `write` function is the source of truth for
transforming a compiled format string into a string at runtime. This must be
able to be constructed in stable code.
2. `Argument` - an opaque structure representing an argument to a format string.
This is *almost* a trait object as it's just a pointer/function pair, but due
to the function originating from one of many traits, it's not actually a
trait object. Like `Arguments`, this must be constructed from stable code.
3. `fmt::rt` - this module contains the runtime type definitions primarily for
the `rt::Argument` structure. Whenever an argument is formatted with
nonstandard flags, a corresponding `rt::Argument` is generated describing how
the argument is being formatted. This can be used to construct an
`Arguments`.
The primary interface to `std::fmt` is the `Arguments` structure, and as such
this type name is stabilize as-is today. It is expected for libraries to pass
around an `Arguments` structure to represent a pending formatted computation.
The remaining portions are largely "cruft" which would rather not be stabilized,
but due to the stability checks they must be. As a result, almost all pieces
have been renamed to represent that they are "version 1" of the formatting
representation. The theory is that at a later date if we change the
representation of these types we can add new definitions called "version 2" and
corresponding constructors for `Arguments`.
One of the other remaining large questions about the fmt module were how the
pending I/O reform would affect the signatures of methods in the module. Due to
[RFC 526][rfc], however, the writers of fmt are now incompatible with the
writers of io, so this question has largely been solved. As a result the
interfaces are largely stabilized as-is today.
[rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0526-fmt-text-writer.md
Specifically, the following changes were made:
* The contents of `fmt::rt` were all moved under `fmt::rt::v1`
* `fmt::rt` is stable
* `fmt::rt::v1` is stable
* `Error` is stable
* `Writer` is stable
* `Writer::write_str` is stable
* `Writer::write_fmt` is stable
* `Formatter` is stable
* `Argument` has been renamed to `ArgumentV1` and is stable
* `ArgumentV1::new` is stable
* `ArgumentV1::from_uint` is stable
* `Arguments::new_v1` is stable (renamed from `new`)
* `Arguments::new_v1_formatted` is stable (renamed from `with_placeholders`)
* All formatting traits are now stable, as well as the `fmt` method.
* `fmt::write` is stable
* `fmt::format` is stable
* `Formatter::pad_integral` is stable
* `Formatter::pad` is stable
* `Formatter::write_str` is stable
* `Formatter::write_fmt` is stable
* Some assorted top level items which were only used by `format_args!` were
removed in favor of static functions on `ArgumentV1` as well.
* The formatting-flag-accessing methods remain unstable
Within the contents of the `fmt::rt::v1` module, the following actions were
taken:
* Reexports of all enum variants were removed
* All prefixes on enum variants were removed
* A few miscellaneous enum variants were renamed
* Otherwise all structs, fields, and variants were marked stable.
In addition to these actions in the `std::fmt` module, many implementations of
`Show` and `String` were stabilized as well.
In some other modules:
* `ToString` is now stable
* `ToString::to_string` is now stable
* `Vec` no longer implements `fmt::Writer` (this has moved to `String`)
This is a breaking change due to all of the changes to the `fmt::rt` module, but
this likely will not have much impact on existing programs.
Closes #20661
[breaking-change]
2015-01-13 17:42:53 -06:00
|
|
|
impl<T: fmt::Debug, E> Result<T, E> {
|
2017-08-18 09:41:54 -05:00
|
|
|
/// Unwraps a result, yielding the content of an [`Err`].
|
2014-05-10 15:46:05 -05:00
|
|
|
///
|
2014-10-09 14:17:22 -05:00
|
|
|
/// # Panics
|
2014-07-12 10:02:15 -05:00
|
|
|
///
|
2017-08-18 09:41:54 -05:00
|
|
|
/// Panics if the value is an [`Ok`], with a custom panic message provided
|
|
|
|
/// by the [`Ok`]'s value.
|
|
|
|
///
|
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
|
|
|
/// [`Err`]: enum.Result.html#variant.Err
|
|
|
|
///
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2015-03-11 20:11:40 -05:00
|
|
|
/// # Examples
|
2014-09-16 10:09:24 -05:00
|
|
|
///
|
2015-03-26 15:30:33 -05:00
|
|
|
/// ```{.should_panic}
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Ok(2);
|
2014-10-09 14:17:22 -05:00
|
|
|
/// x.unwrap_err(); // panics with `2`
|
2014-09-16 10:09:24 -05:00
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// ```
|
2015-02-15 09:24:47 -06:00
|
|
|
/// let x: Result<u32, &str> = Err("emergency failure");
|
2014-09-16 10:09:24 -05:00
|
|
|
/// assert_eq!(x.unwrap_err(), "emergency failure");
|
|
|
|
/// ```
|
2014-05-10 15:46:05 -05:00
|
|
|
#[inline]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-05-10 15:46:05 -05:00
|
|
|
pub fn unwrap_err(self) -> E {
|
|
|
|
match self {
|
2019-07-11 14:40:38 -05:00
|
|
|
Ok(t) => unwrap_failed("called `Result::unwrap_err()` on an `Ok` value", &t),
|
2016-01-22 10:06:34 -06:00
|
|
|
Err(e) => e,
|
2014-05-10 15:46:05 -05:00
|
|
|
}
|
|
|
|
}
|
2017-01-10 21:17:47 -06:00
|
|
|
|
2017-08-18 09:41:54 -05:00
|
|
|
/// Unwraps a result, yielding the content of an [`Err`].
|
2017-01-10 21:17:47 -06:00
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
2017-08-18 09:41:54 -05:00
|
|
|
/// Panics if the value is an [`Ok`], with a panic message including the
|
|
|
|
/// passed message, and the content of the [`Ok`].
|
|
|
|
///
|
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
|
|
|
/// [`Err`]: enum.Result.html#variant.Err
|
2017-01-10 21:17:47 -06:00
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// Basic usage:
|
|
|
|
///
|
|
|
|
/// ```{.should_panic}
|
|
|
|
/// let x: Result<u32, &str> = Ok(10);
|
|
|
|
/// x.expect_err("Testing expect_err"); // panics with `Testing expect_err: 10`
|
|
|
|
/// ```
|
|
|
|
#[inline]
|
2017-03-14 22:49:18 -05:00
|
|
|
#[stable(feature = "result_expect_err", since = "1.17.0")]
|
2017-01-10 21:17:47 -06:00
|
|
|
pub fn expect_err(self, msg: &str) -> E {
|
|
|
|
match self {
|
2019-07-11 14:40:38 -05:00
|
|
|
Ok(t) => unwrap_failed(msg, &t),
|
2017-01-10 21:17:47 -06:00
|
|
|
Err(e) => e,
|
|
|
|
}
|
|
|
|
}
|
2016-01-22 11:19:00 -06:00
|
|
|
}
|
2016-01-22 10:06:34 -06:00
|
|
|
|
2016-10-20 00:08:49 -05:00
|
|
|
impl<T: Default, E> Result<T, E> {
|
|
|
|
/// Returns the contained value or a default
|
|
|
|
///
|
2017-08-18 09:41:54 -05:00
|
|
|
/// Consumes the `self` argument then, if [`Ok`], returns the contained
|
|
|
|
/// value, otherwise if [`Err`], returns the default value for that
|
2016-10-20 00:08:49 -05:00
|
|
|
/// type.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
2019-02-09 16:16:58 -06:00
|
|
|
/// Converts a string to an integer, turning poorly-formed strings
|
2016-10-21 01:50:33 -05:00
|
|
|
/// into 0 (the default value for integers). [`parse`] converts
|
|
|
|
/// a string to any other type that implements [`FromStr`], returning an
|
2017-08-18 09:41:54 -05:00
|
|
|
/// [`Err`] on error.
|
2016-10-20 00:08:49 -05:00
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// let good_year_from_input = "1909";
|
|
|
|
/// let bad_year_from_input = "190blarg";
|
|
|
|
/// let good_year = good_year_from_input.parse().unwrap_or_default();
|
|
|
|
/// let bad_year = bad_year_from_input.parse().unwrap_or_default();
|
|
|
|
///
|
|
|
|
/// assert_eq!(1909, good_year);
|
|
|
|
/// assert_eq!(0, bad_year);
|
2017-03-10 11:35:15 -06:00
|
|
|
/// ```
|
2016-10-21 01:50:33 -05:00
|
|
|
///
|
|
|
|
/// [`parse`]: ../../std/primitive.str.html#method.parse
|
|
|
|
/// [`FromStr`]: ../../std/str/trait.FromStr.html
|
2017-08-18 09:41:54 -05:00
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
|
|
|
/// [`Err`]: enum.Result.html#variant.Err
|
2016-10-20 00:08:49 -05:00
|
|
|
#[inline]
|
2017-01-25 17:37:20 -06:00
|
|
|
#[stable(feature = "result_unwrap_or_default", since = "1.16.0")]
|
2016-10-20 00:08:49 -05:00
|
|
|
pub fn unwrap_or_default(self) -> T {
|
|
|
|
match self {
|
|
|
|
Ok(x) => x,
|
|
|
|
Err(_) => Default::default(),
|
2018-01-04 13:34:03 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-26 22:41:10 -05:00
|
|
|
#[unstable(feature = "inner_deref", reason = "newly added", issue = "50264")]
|
2018-04-27 08:36:37 -05:00
|
|
|
impl<T: Deref, E> Result<T, E> {
|
2019-04-01 14:08:19 -05:00
|
|
|
/// Converts from `Result<T, E>` (or `&Result<T, E>`) to `Result<&T::Target, &E>`.
|
2018-04-26 21:54:24 -05:00
|
|
|
///
|
2019-04-01 14:08:19 -05:00
|
|
|
/// Leaves the original `Result` in-place, creating a new one containing a reference to the
|
|
|
|
/// `Ok` type's `Deref::Target` type.
|
|
|
|
pub fn as_deref_ok(&self) -> Result<&T::Target, &E> {
|
2018-04-26 21:54:24 -05:00
|
|
|
self.as_ref().map(|t| t.deref())
|
|
|
|
}
|
2018-04-27 08:36:37 -05:00
|
|
|
}
|
2018-04-26 21:54:24 -05:00
|
|
|
|
2018-04-27 08:36:37 -05:00
|
|
|
#[unstable(feature = "inner_deref", reason = "newly added", issue = "50264")]
|
|
|
|
impl<T, E: Deref> Result<T, E> {
|
2019-04-01 14:08:19 -05:00
|
|
|
/// Converts from `Result<T, E>` (or `&Result<T, E>`) to `Result<&T, &E::Target>`.
|
2018-04-26 21:54:24 -05:00
|
|
|
///
|
2019-04-01 14:08:19 -05:00
|
|
|
/// Leaves the original `Result` in-place, creating a new one containing a reference to the
|
|
|
|
/// `Err` type's `Deref::Target` type.
|
|
|
|
pub fn as_deref_err(&self) -> Result<&T, &E::Target>
|
2018-04-26 21:54:24 -05:00
|
|
|
{
|
|
|
|
self.as_ref().map_err(|e| e.deref())
|
|
|
|
}
|
2018-04-27 08:36:37 -05:00
|
|
|
}
|
2018-04-26 21:54:24 -05:00
|
|
|
|
2018-04-27 08:36:37 -05:00
|
|
|
#[unstable(feature = "inner_deref", reason = "newly added", issue = "50264")]
|
|
|
|
impl<T: Deref, E: Deref> Result<T, E> {
|
2019-04-01 14:08:19 -05:00
|
|
|
/// Converts from `Result<T, E>` (or `&Result<T, E>`) to `Result<&T::Target, &E::Target>`.
|
2018-04-26 21:54:24 -05:00
|
|
|
///
|
2019-04-01 14:08:19 -05:00
|
|
|
/// Leaves the original `Result` in-place, creating a new one containing a reference to both
|
|
|
|
/// the `Ok` and `Err` types' `Deref::Target` types.
|
|
|
|
pub fn as_deref(&self) -> Result<&T::Target, &E::Target>
|
2018-04-26 21:54:24 -05:00
|
|
|
{
|
|
|
|
self.as_ref().map(|t| t.deref()).map_err(|e| e.deref())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-01 14:08:19 -05:00
|
|
|
#[unstable(feature = "inner_deref", reason = "newly added", issue = "50264")]
|
|
|
|
impl<T: DerefMut, E> Result<T, E> {
|
|
|
|
/// Converts from `Result<T, E>` (or `&mut Result<T, E>`) to `Result<&mut T::Target, &mut E>`.
|
|
|
|
///
|
|
|
|
/// Leaves the original `Result` in-place, creating a new one containing a mutable reference to
|
|
|
|
/// the `Ok` type's `Deref::Target` type.
|
|
|
|
pub fn as_deref_mut_ok(&mut self) -> Result<&mut T::Target, &mut E> {
|
|
|
|
self.as_mut().map(|t| t.deref_mut())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[unstable(feature = "inner_deref", reason = "newly added", issue = "50264")]
|
|
|
|
impl<T, E: DerefMut> Result<T, E> {
|
|
|
|
/// Converts from `Result<T, E>` (or `&mut Result<T, E>`) to `Result<&mut T, &mut E::Target>`.
|
|
|
|
///
|
|
|
|
/// Leaves the original `Result` in-place, creating a new one containing a mutable reference to
|
|
|
|
/// the `Err` type's `Deref::Target` type.
|
|
|
|
pub fn as_deref_mut_err(&mut self) -> Result<&mut T, &mut E::Target>
|
|
|
|
{
|
|
|
|
self.as_mut().map_err(|e| e.deref_mut())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[unstable(feature = "inner_deref", reason = "newly added", issue = "50264")]
|
|
|
|
impl<T: DerefMut, E: DerefMut> Result<T, E> {
|
|
|
|
/// Converts from `Result<T, E>` (or `&mut Result<T, E>`) to
|
|
|
|
/// `Result<&mut T::Target, &mut E::Target>`.
|
|
|
|
///
|
|
|
|
/// Leaves the original `Result` in-place, creating a new one containing a mutable reference to
|
|
|
|
/// both the `Ok` and `Err` types' `Deref::Target` types.
|
|
|
|
pub fn as_deref_mut(&mut self) -> Result<&mut T::Target, &mut E::Target>
|
|
|
|
{
|
|
|
|
self.as_mut().map(|t| t.deref_mut()).map_err(|e| e.deref_mut())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-04 13:34:03 -06:00
|
|
|
impl<T, E> Result<Option<T>, E> {
|
|
|
|
/// Transposes a `Result` of an `Option` into an `Option` of a `Result`.
|
|
|
|
///
|
|
|
|
/// `Ok(None)` will be mapped to `None`.
|
|
|
|
/// `Ok(Some(_))` and `Err(_)` will be mapped to `Some(Ok(_))` and `Some(Err(_))`.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// #[derive(Debug, Eq, PartialEq)]
|
|
|
|
/// struct SomeErr;
|
|
|
|
///
|
|
|
|
/// let x: Result<Option<i32>, SomeErr> = Ok(Some(5));
|
|
|
|
/// let y: Option<Result<i32, SomeErr>> = Some(Ok(5));
|
|
|
|
/// assert_eq!(x.transpose(), y);
|
|
|
|
/// ```
|
|
|
|
#[inline]
|
2019-01-12 21:34:32 -06:00
|
|
|
#[stable(feature = "transpose_result", since = "1.33.0")]
|
2018-01-04 13:34:03 -06:00
|
|
|
pub fn transpose(self) -> Option<Result<T, E>> {
|
|
|
|
match self {
|
|
|
|
Ok(Some(x)) => Some(Ok(x)),
|
|
|
|
Ok(None) => None,
|
|
|
|
Err(e) => Some(Err(e)),
|
2016-10-20 00:08:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-22 11:19:00 -06:00
|
|
|
// This is a separate function to reduce the code size of the methods
|
|
|
|
#[inline(never)]
|
|
|
|
#[cold]
|
2019-07-11 14:40:38 -05:00
|
|
|
fn unwrap_failed(msg: &str, error: &dyn fmt::Debug) -> ! {
|
2016-01-22 11:19:00 -06:00
|
|
|
panic!("{}: {:?}", msg, error)
|
2014-05-10 15:46:05 -05:00
|
|
|
}
|
|
|
|
|
2014-10-06 21:55:52 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Trait implementations
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2019-05-30 05:50:06 -05:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl<T: Clone, E: Clone> Clone for Result<T, E> {
|
|
|
|
#[inline]
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
match self {
|
|
|
|
Ok(x) => Ok(x.clone()),
|
|
|
|
Err(x) => Err(x.clone()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn clone_from(&mut self, source: &Self) {
|
|
|
|
match (self, source) {
|
|
|
|
(Ok(to), Ok(from)) => to.clone_from(from),
|
|
|
|
(Err(to), Err(from)) => to.clone_from(from),
|
|
|
|
(to, from) => *to = from.clone(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-17 16:31:30 -05:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl<T, E> IntoIterator for Result<T, E> {
|
|
|
|
type Item = T;
|
|
|
|
type IntoIter = IntoIter<T>;
|
|
|
|
|
|
|
|
/// Returns a consuming iterator over the possibly contained value.
|
|
|
|
///
|
2018-07-01 11:51:39 -05:00
|
|
|
/// The iterator yields one value if the result is [`Result::Ok`], otherwise none.
|
2016-12-03 15:05:05 -06:00
|
|
|
///
|
2015-04-17 16:31:30 -05:00
|
|
|
/// # Examples
|
|
|
|
///
|
2016-04-08 19:00:12 -05:00
|
|
|
/// Basic usage:
|
|
|
|
///
|
2015-04-17 16:31:30 -05:00
|
|
|
/// ```
|
|
|
|
/// let x: Result<u32, &str> = Ok(5);
|
|
|
|
/// let v: Vec<u32> = x.into_iter().collect();
|
|
|
|
/// assert_eq!(v, [5]);
|
|
|
|
///
|
|
|
|
/// let x: Result<u32, &str> = Err("nothing!");
|
|
|
|
/// let v: Vec<u32> = x.into_iter().collect();
|
|
|
|
/// assert_eq!(v, []);
|
|
|
|
/// ```
|
|
|
|
#[inline]
|
|
|
|
fn into_iter(self) -> IntoIter<T> {
|
|
|
|
IntoIter { inner: self.ok() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-27 01:37:40 -05:00
|
|
|
#[stable(since = "1.4.0", feature = "result_iter")]
|
|
|
|
impl<'a, T, E> IntoIterator for &'a Result<T, E> {
|
|
|
|
type Item = &'a T;
|
|
|
|
type IntoIter = Iter<'a, T>;
|
|
|
|
|
|
|
|
fn into_iter(self) -> Iter<'a, T> {
|
|
|
|
self.iter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[stable(since = "1.4.0", feature = "result_iter")]
|
|
|
|
impl<'a, T, E> IntoIterator for &'a mut Result<T, E> {
|
|
|
|
type Item = &'a mut T;
|
|
|
|
type IntoIter = IterMut<'a, T>;
|
|
|
|
|
2017-08-01 07:03:03 -05:00
|
|
|
fn into_iter(self) -> IterMut<'a, T> {
|
2015-08-27 01:37:40 -05:00
|
|
|
self.iter_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-19 15:45:28 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
// The Result Iterators
|
2014-08-19 15:45:28 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-09-09 09:08:04 -05:00
|
|
|
/// An iterator over a reference to the [`Ok`] variant of a [`Result`].
|
|
|
|
///
|
2016-12-03 15:05:05 -06:00
|
|
|
/// The iterator yields one value if the result is [`Ok`], otherwise none.
|
|
|
|
///
|
|
|
|
/// Created by [`Result::iter`].
|
|
|
|
///
|
2016-09-09 09:08:04 -05:00
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
|
|
|
/// [`Result`]: enum.Result.html
|
2016-12-03 15:05:05 -06:00
|
|
|
/// [`Result::iter`]: enum.Result.html#method.iter
|
2016-03-04 20:49:43 -06:00
|
|
|
#[derive(Debug)]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
pub struct Iter<'a, T: 'a> { inner: Option<&'a T> }
|
2014-08-19 15:45:28 -05:00
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-12-29 15:18:41 -06:00
|
|
|
impl<'a, T> Iterator for Iter<'a, T> {
|
|
|
|
type Item = &'a T;
|
|
|
|
|
2014-08-19 15:45:28 -05:00
|
|
|
#[inline]
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
fn next(&mut self) -> Option<&'a T> { self.inner.take() }
|
|
|
|
#[inline]
|
2015-02-15 09:24:47 -06:00
|
|
|
fn size_hint(&self) -> (usize, Option<usize>) {
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
let n = if self.inner.is_some() {1} else {0};
|
|
|
|
(n, Some(n))
|
2014-08-19 15:45:28 -05:00
|
|
|
}
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
}
|
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-12-29 15:18:41 -06:00
|
|
|
impl<'a, T> DoubleEndedIterator for Iter<'a, T> {
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
#[inline]
|
|
|
|
fn next_back(&mut self) -> Option<&'a T> { self.inner.take() }
|
|
|
|
}
|
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2018-09-03 06:50:14 -05:00
|
|
|
impl<T> ExactSizeIterator for Iter<'_, T> {}
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
|
2018-03-03 07:15:28 -06:00
|
|
|
#[stable(feature = "fused", since = "1.26.0")]
|
2018-09-03 06:50:14 -05:00
|
|
|
impl<T> FusedIterator for Iter<'_, T> {}
|
2016-08-13 13:42:36 -05:00
|
|
|
|
2016-11-03 18:24:59 -05:00
|
|
|
#[unstable(feature = "trusted_len", issue = "37572")]
|
2018-09-03 06:50:14 -05:00
|
|
|
unsafe impl<A> TrustedLen for Iter<'_, A> {}
|
2016-10-20 07:34:34 -05:00
|
|
|
|
2015-11-16 10:54:28 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2018-09-03 06:50:14 -05:00
|
|
|
impl<T> Clone for Iter<'_, T> {
|
2018-08-09 04:27:48 -05:00
|
|
|
#[inline]
|
2018-09-03 06:50:14 -05:00
|
|
|
fn clone(&self) -> Self { Iter { inner: self.inner } }
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
}
|
|
|
|
|
2016-09-09 09:08:04 -05:00
|
|
|
/// An iterator over a mutable reference to the [`Ok`] variant of a [`Result`].
|
|
|
|
///
|
2016-12-03 15:05:05 -06:00
|
|
|
/// Created by [`Result::iter_mut`].
|
|
|
|
///
|
2016-09-09 09:08:04 -05:00
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
|
|
|
/// [`Result`]: enum.Result.html
|
2016-12-03 15:05:05 -06:00
|
|
|
/// [`Result::iter_mut`]: enum.Result.html#method.iter_mut
|
2016-03-04 20:49:43 -06:00
|
|
|
#[derive(Debug)]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
pub struct IterMut<'a, T: 'a> { inner: Option<&'a mut T> }
|
2014-08-19 15:45:28 -05:00
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-12-29 15:18:41 -06:00
|
|
|
impl<'a, T> Iterator for IterMut<'a, T> {
|
|
|
|
type Item = &'a mut T;
|
|
|
|
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
#[inline]
|
|
|
|
fn next(&mut self) -> Option<&'a mut T> { self.inner.take() }
|
2014-08-19 15:45:28 -05:00
|
|
|
#[inline]
|
2015-02-15 09:24:47 -06:00
|
|
|
fn size_hint(&self) -> (usize, Option<usize>) {
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
let n = if self.inner.is_some() {1} else {0};
|
|
|
|
(n, Some(n))
|
2014-08-19 15:45:28 -05:00
|
|
|
}
|
|
|
|
}
|
2014-06-23 18:27:54 -05:00
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-12-29 15:18:41 -06:00
|
|
|
impl<'a, T> DoubleEndedIterator for IterMut<'a, T> {
|
2014-08-19 15:45:28 -05:00
|
|
|
#[inline]
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
fn next_back(&mut self) -> Option<&'a mut T> { self.inner.take() }
|
|
|
|
}
|
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2018-09-03 06:50:14 -05:00
|
|
|
impl<T> ExactSizeIterator for IterMut<'_, T> {}
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
|
2018-03-03 07:15:28 -06:00
|
|
|
#[stable(feature = "fused", since = "1.26.0")]
|
2018-09-03 06:50:14 -05:00
|
|
|
impl<T> FusedIterator for IterMut<'_, T> {}
|
2016-08-13 13:42:36 -05:00
|
|
|
|
2016-11-03 18:24:59 -05:00
|
|
|
#[unstable(feature = "trusted_len", issue = "37572")]
|
2018-09-03 06:50:14 -05:00
|
|
|
unsafe impl<A> TrustedLen for IterMut<'_, A> {}
|
2016-10-20 07:34:34 -05:00
|
|
|
|
2016-12-03 15:05:05 -06:00
|
|
|
/// An iterator over the value in a [`Ok`] variant of a [`Result`].
|
|
|
|
///
|
|
|
|
/// The iterator yields one value if the result is [`Ok`], otherwise none.
|
|
|
|
///
|
|
|
|
/// This struct is created by the [`into_iter`] method on
|
|
|
|
/// [`Result`][`Result`] (provided by the [`IntoIterator`] trait).
|
2016-08-19 20:43:21 -05:00
|
|
|
///
|
2016-09-09 09:08:04 -05:00
|
|
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
2016-08-19 20:43:21 -05:00
|
|
|
/// [`Result`]: enum.Result.html
|
|
|
|
/// [`into_iter`]: ../iter/trait.IntoIterator.html#tymethod.into_iter
|
|
|
|
/// [`IntoIterator`]: ../iter/trait.IntoIterator.html
|
2017-10-10 12:18:34 -05:00
|
|
|
#[derive(Clone, Debug)]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
pub struct IntoIter<T> { inner: Option<T> }
|
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-12-29 15:18:41 -06:00
|
|
|
impl<T> Iterator for IntoIter<T> {
|
|
|
|
type Item = T;
|
|
|
|
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
#[inline]
|
|
|
|
fn next(&mut self) -> Option<T> { self.inner.take() }
|
|
|
|
#[inline]
|
2015-02-15 09:24:47 -06:00
|
|
|
fn size_hint(&self) -> (usize, Option<usize>) {
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
let n = if self.inner.is_some() {1} else {0};
|
|
|
|
(n, Some(n))
|
2014-06-23 18:27:54 -05:00
|
|
|
}
|
2014-08-19 15:45:28 -05:00
|
|
|
}
|
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-12-29 15:18:41 -06:00
|
|
|
impl<T> DoubleEndedIterator for IntoIter<T> {
|
std: Second pass stabilization of Result<T, E>
This commit, like the second pass of `Option`, largely just stablizes the
existing functionality after renaming a few iterators.
The specific actions taken were:
* The `Ok` and `Err` variants were marked `#[stable]` as the stability
inheritance was since removed.
* The `as_mut` method is now stable.
* The `map` method is now stable
* The `map_err` method is now stable
* The `iter`, `iter_mut`, and `into_iter` methods now returned structures named
after the method of iteration. The methods are also now all stable.
* The `and_then` method is now stable.
* The `or_else` method is now stable.
* The `unwrap` family of functions are now all stable: `unwrap_or`,
`unwrap_or_else`, `unwrap`, and `unwrap_err`.
There is a possible open extension to `Result::{and, and_then}` to make the
return type further generic over `FromError` (as proposed in #19078), but this
is a backwards compatible change due to the usage of default type parameters,
which makes the two functions safe to stabilize now regardless of the outcome of
that issue.
2014-12-17 14:10:13 -06:00
|
|
|
#[inline]
|
|
|
|
fn next_back(&mut self) -> Option<T> { self.inner.take() }
|
|
|
|
}
|
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-12-29 15:18:41 -06:00
|
|
|
impl<T> ExactSizeIterator for IntoIter<T> {}
|
2014-06-23 18:27:54 -05:00
|
|
|
|
2018-03-03 07:15:28 -06:00
|
|
|
#[stable(feature = "fused", since = "1.26.0")]
|
2016-08-13 13:42:36 -05:00
|
|
|
impl<T> FusedIterator for IntoIter<T> {}
|
|
|
|
|
2016-11-03 18:24:59 -05:00
|
|
|
#[unstable(feature = "trusted_len", issue = "37572")]
|
2016-10-20 07:34:34 -05:00
|
|
|
unsafe impl<A> TrustedLen for IntoIter<A> {}
|
|
|
|
|
2014-08-19 15:45:28 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2014-11-14 22:39:41 -06:00
|
|
|
// FromIterator
|
2014-08-19 15:45:28 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-08-19 15:45:28 -05:00
|
|
|
impl<A, E, V: FromIterator<A>> FromIterator<Result<A, E>> for Result<V, E> {
|
|
|
|
/// Takes each element in the `Iterator`: if it is an `Err`, no further
|
|
|
|
/// elements are taken, and the `Err` is returned. Should no `Err` occur, a
|
|
|
|
/// container with the values of each `Result` is returned.
|
|
|
|
///
|
|
|
|
/// Here is an example which increments every integer in a vector,
|
|
|
|
/// checking for overflow:
|
|
|
|
///
|
2015-03-12 21:42:38 -05:00
|
|
|
/// ```
|
2016-10-29 16:54:04 -05:00
|
|
|
/// let v = vec![1, 2];
|
2017-06-09 15:20:32 -05:00
|
|
|
/// let res: Result<Vec<u32>, &'static str> = v.iter().map(|x: &u32|
|
|
|
|
/// x.checked_add(1).ok_or("Overflow!")
|
2014-08-19 15:45:28 -05:00
|
|
|
/// ).collect();
|
2019-03-11 20:04:34 -05:00
|
|
|
/// assert_eq!(res, Ok(vec![2, 3]));
|
2014-08-19 15:45:28 -05:00
|
|
|
/// ```
|
2019-03-20 07:09:22 -05:00
|
|
|
///
|
|
|
|
/// Here is another example that tries to subtract one from another list
|
|
|
|
/// of integers, this time checking for underflow:
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// let v = vec![1, 2, 0];
|
|
|
|
/// let res: Result<Vec<u32>, &'static str> = v.iter().map(|x: &u32|
|
|
|
|
/// x.checked_sub(1).ok_or("Underflow!")
|
|
|
|
/// ).collect();
|
|
|
|
/// assert_eq!(res, Err("Underflow!"));
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Here is a variation on the previous example, showing that no
|
|
|
|
/// further elements are taken from `iter` after the first `Err`.
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// let v = vec![3, 2, 1, 10];
|
|
|
|
/// let mut shared = 0;
|
2019-03-25 05:50:11 -05:00
|
|
|
/// let res: Result<Vec<u32>, &'static str> = v.iter().map(|x: &u32| {
|
2019-03-20 07:09:22 -05:00
|
|
|
/// shared += x;
|
|
|
|
/// x.checked_sub(2).ok_or("Underflow!")
|
2019-03-25 05:50:11 -05:00
|
|
|
/// }).collect();
|
2019-03-20 07:09:22 -05:00
|
|
|
/// assert_eq!(res, Err("Underflow!"));
|
|
|
|
/// assert_eq!(shared, 6);
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Since the third element caused an underflow, no further elements were taken,
|
|
|
|
/// so the final value of `shared` is 6 (= `3 + 2 + 1`), not 16.
|
2014-08-19 15:45:28 -05:00
|
|
|
#[inline]
|
2015-02-18 12:06:21 -06:00
|
|
|
fn from_iter<I: IntoIterator<Item=Result<A, E>>>(iter: I) -> Result<V, E> {
|
2014-08-19 15:45:28 -05:00
|
|
|
// FIXME(#11084): This could be replaced with Iterator::scan when this
|
|
|
|
// performance bug is closed.
|
|
|
|
|
2019-07-22 17:55:18 -05:00
|
|
|
ResultShunt::process(iter.into_iter(), |i| i.collect())
|
2012-03-13 19:46:16 -05:00
|
|
|
}
|
|
|
|
}
|
2017-05-07 02:14:04 -05:00
|
|
|
|
2017-05-31 03:30:13 -05:00
|
|
|
#[unstable(feature = "try_trait", issue = "42327")]
|
2017-05-07 02:14:04 -05:00
|
|
|
impl<T,E> ops::Try for Result<T, E> {
|
|
|
|
type Ok = T;
|
|
|
|
type Error = E;
|
|
|
|
|
2018-08-09 04:27:48 -05:00
|
|
|
#[inline]
|
2017-05-07 02:14:04 -05:00
|
|
|
fn into_result(self) -> Self {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2018-08-09 04:27:48 -05:00
|
|
|
#[inline]
|
2017-05-07 02:14:04 -05:00
|
|
|
fn from_ok(v: T) -> Self {
|
|
|
|
Ok(v)
|
|
|
|
}
|
|
|
|
|
2018-08-09 04:27:48 -05:00
|
|
|
#[inline]
|
2017-05-07 02:14:04 -05:00
|
|
|
fn from_error(v: E) -> Self {
|
|
|
|
Err(v)
|
|
|
|
}
|
2017-06-09 15:20:32 -05:00
|
|
|
}
|