pub enum Children<'a> {
Direct(Vec<(FieldInfo<'a>, ValueRef<'a>)>),
}Expand description
Children of an inspected value.
This type represents the child elements of a structured value like a struct, tuple, or collection.
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Children<'a>
impl<'a> RefUnwindSafe for Children<'a>
impl<'a> Send for Children<'a>
impl<'a> Sync for Children<'a>
impl<'a> Unpin for Children<'a>
impl<'a> UnsafeUnpin for Children<'a>
impl<'a> UnwindSafe for Children<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more