blob: 3a1eee2d8041fe48403c6c6ed619f76007982f0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#[derive(Debug, Clone)]
pub struct CodePointString {
pub(crate) string: String,
}
impl CodePointString {
pub fn wordwrap(&self, _width: i64, _break: &str, _cut: bool) -> Self {
todo!()
}
pub fn to_byte_string(&self, _encoding: &str) -> String {
todo!()
}
}
|