1
2
3
4
5
6
7
8
9
10
11
12
13
14
use super::EncodingFormat;
use anyhow::Result;

pub struct Latin1;

impl EncodingFormat for Latin1 {
    fn into_java(_str: String) -> Result<Vec<u8>> {
        todo!()
    }

    fn from_java(_str: Vec<u8>) -> Result<String> {
        todo!()
    }
}