Module vartuple
Types to help compose fixed-size ULE and variable-size VarULE primitives.
This module exports VarTuple and VarTupleULE, which allow a single sized type and
a single unsized type to be stored together as a VarULE.
Examples
use ;
use VarZeroVec;
;
let employees = ;
let employees_as_var_tuples = employees
.into_iter
.map
.;
let employees_vzv: =
employees_as_var_tuples.as_slice.into;
assert_eq!;
assert_eq!;
assert_eq!;
assert_eq!;
assert_eq!;
Structs
-
VarTuple
A sized type that can be converted to a
VarTupleULE. - VarTupleULE A dynamically-sized type combining a sized and an unsized type.