mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
Auto merge of #35845 - frewsxcv:result-into-iter, r=GuillaumeGomez
Indicate where `core::result::IntoIter` is created. None
This commit is contained in:
commit
cbe4de78e2
@ -902,7 +902,13 @@ impl<'a, T> ExactSizeIterator for IterMut<'a, T> {}
|
|||||||
#[unstable(feature = "fused", issue = "35602")]
|
#[unstable(feature = "fused", issue = "35602")]
|
||||||
impl<'a, T> FusedIterator for IterMut<'a, T> {}
|
impl<'a, T> FusedIterator for IterMut<'a, T> {}
|
||||||
|
|
||||||
/// An iterator over the value in a `Ok` variant of a `Result`.
|
/// An iterator over the value in a `Ok` variant of a `Result`. This struct is
|
||||||
|
/// created by the [`into_iter`] method on [`Result`][`Result`] (provided by
|
||||||
|
/// the [`IntoIterator`] trait).
|
||||||
|
///
|
||||||
|
/// [`Result`]: enum.Result.html
|
||||||
|
/// [`into_iter`]: ../iter/trait.IntoIterator.html#tymethod.into_iter
|
||||||
|
/// [`IntoIterator`]: ../iter/trait.IntoIterator.html
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
#[stable(feature = "rust1", since = "1.0.0")]
|
#[stable(feature = "rust1", since = "1.0.0")]
|
||||||
pub struct IntoIter<T> { inner: Option<T> }
|
pub struct IntoIter<T> { inner: Option<T> }
|
||||||
|
Loading…
Reference in New Issue
Block a user