usecrate::Result;/// Stateful writer for streaming values one at a time to a string buffer.
////// Useful for incremental serialization when memory constraints prevent
/// materializing entire collections.
pubtraitValueWriter{/// Writes the next value to the buffer in CSV format.
////// # Errors
/// Returns `IteratorEnded` when no more values are available.
fnwrite_next(&mutself, buf:&mut String)->Result<()>;}