pub type ViewMappedValue<'doc, V> = MappedValue<<V as ViewSchema>::MappedKey<'doc>, <<V as ViewSchema>::View as View>::Value>;Expand description
A mapped value in a View.
Aliased Type§
struct ViewMappedValue<'doc, V> {
pub key: <V as ViewSchema>::MappedKey<'doc>,
pub value: <<V as ViewSchema>::View as View>::Value,
}Fields§
§key: <V as ViewSchema>::MappedKey<'doc>The key responsible for generating the value
value: <<V as ViewSchema>::View as View>::ValueThe value generated by the View