Expand description
Core module used for encoding and decoding RSV data
Hereโs an example for input to the encoder:
let input: Vec<Vec<Option<String>>> = vec![
vec![Some("Hello user!".to_string()), None],
vec![Some("\n\\\'\"".to_string()), Some("๐๐๐".to_string())]
];