Type Definition libdata::column::RefHeader
[−]
type RefHeader<'a> = BTreeSet<Option<&'a Value>>;
Just like Header
, but with references instead of owned values.
This allows looking up values when only Option<&Value>
is avaliable without cloning the
value.