fn make_string_datum<V>(value: V, scratch: &mut String) -> Datum<'_>where
    V: Display,
Expand description

Format the given value and pack it into a Datum::String.

The scratch buffer is used to perform the string conversion without an allocation. Callers should not assume anything about the contents of this buffer after this function returns.