blob: 58f4697d03360fb25e093342f7bde1bccb8521b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
use crate::symfony::string::code_point_string::CodePointString;
#[derive(Debug, Clone)]
pub struct ByteString {
pub(crate) string: String,
}
impl ByteString {
pub fn new(_string: &str) -> Self {
todo!()
}
pub fn to_code_point_string(&self, _encoding: &str) -> CodePointString {
todo!()
}
}
|