blob: ab17c1eb87dd7b422e7041e73e005b349ae6d4d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//! ref: composer/vendor/symfony/string/ByteString.php
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!()
}
}
|