1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
use chakracore_sys::*;
use context::ContextGuard;
use super::Value;
pub struct String(JsValueRef);
impl String {
pub fn new(_guard: &ContextGuard, string: &str) -> Self {
let mut value = JsValueRef::new();
unsafe {
jsassert!(JsCreateString(string.as_ptr() as _, string.len(), &mut value));
Self::from_raw(value)
}
}
pub fn len(&self) -> usize {
let mut length = 0;
jsassert!(unsafe { JsGetStringLength(self.as_raw(), &mut length) });
length as usize
}
pub fn value(&self) -> ::std::string::String {
::util::to_string_impl(self.as_raw(), JsCopyString).expect("converting string to native")
}
is_same!(String, "Returns true if the value is a `String`.");
}
reference!(String);
inherit!(String, Value);