Struct Children

pub struct Children<'a>(pub(in ::diagnostic) Iter<'a, Diagnostic>);

Iterator over the children diagnostics of a Diagnostic.

Fields

0: Iter<'a, Diagnostic>

Trait Implementations

impl<'a> Clone for Children<'a>

fn clone(&self) -> Children<'a>

impl<'a> Debug for Children<'a>

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl<'a> Iterator for Children<'a>

type Item = &'a Diagnostic;
fn next(&mut self) -> Option<Self::Item>

Auto Trait Implementations

impl<'a> !Send for Children<'a>

impl<'a> !Sync for Children<'a>

impl<'a> Freeze for Children<'a>

impl<'a> RefUnwindSafe for Children<'a>

impl<'a> Unpin for Children<'a>

impl<'a> UnsafeUnpin for Children<'a>

impl<'a> UnwindSafe for Children<'a>

Blanket Implementations

impl<I> IntoIterator for Children<'a> where I: Iterator,

type Item = <I as Iterator>::Item;
type IntoIter = I;
fn into_iter(self) -> I

impl<T> Any for Children<'a> where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for Children<'a> where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for Children<'a> where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> CloneToUninit for Children<'a> where T: Clone,

unsafe fn clone_to_uninit(&self, dest: *mut u8)

impl<T> From<T> for Children<'a>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> RepIteratorExt for Children<'a> where T: Iterator,

impl<T> SizeHint for Children<'a> where T: ?Sized,

fn lower_bound(&self) -> usize
fn upper_bound(&self) -> Option<usize>

impl<T> SizedTypeProperties for Children<'a>

impl<T> ToOwned for Children<'a> where T: Clone,

type Owned = T;
fn to_owned(&self) -> T
fn clone_into(&self, target: &mut T)

impl<T, U> Into<U> for Children<'a> where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for Children<'a> where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for Children<'a> where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>