encode_rs_transcode
This library allows you to easily transcode text within writers.
The transcoding is performed by encoding_rs, this library just provides a simple builder to ease the use with external writers.
Use cases
- Writing files in a particular format (e.g. writing a CSV file in WINDOWS_1252, using the csv crate)
Example
extern crate csv;
use File;
use ;