enum Values<'a> {
Explicit(&'a [(&'a Field, Option<&'a (dyn Value + 'a)>)]),
All(&'a [Option<&'a (dyn Value + 'a)>]),
}Variants§
Explicit(&'a [(&'a Field, Option<&'a (dyn Value + 'a)>)])
A set of field-value pairs. Fields may be for the wrong field set, some fields may be missing, and fields may be in any order.
All(&'a [Option<&'a (dyn Value + 'a)>])
A list of values corresponding exactly to the fields in a FieldSet.
Auto Trait Implementations§
impl<'a> Freeze for Values<'a>
impl<'a> !RefUnwindSafe for Values<'a>
impl<'a> !Send for Values<'a>
impl<'a> !Sync for Values<'a>
impl<'a> Unpin for Values<'a>
impl<'a> !UnwindSafe for Values<'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