Module core

Module core 

Source
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())]
];

Functionsยง

decode_rsv
encode_rsv

Type Aliasesยง

Res