pub fn serial_vector_no_length<W, T>(
    xs: &[T],
    out: &mut W
) -> Result<(), <W as Write>::Err>
where W: Write, T: Serial,
Expand description

Write a slice of elements, without including length information. This is intended to be used either when the length is statically known, or when the length is serialized independently as part of a bigger structure.