2020-06-21 20:10:06 +09:00
|
|
|
use std::convert::TryFrom;
|
|
|
|
|
|
|
|
use super::Value;
|
2022-07-05 18:00:45 +09:00
|
|
|
use crate::bindgen_runtime::{TypeName, ValidateNapiValue};
|
2021-11-02 21:36:34 +09:00
|
|
|
use crate::{check_status, ValueType};
|
2020-06-21 20:10:06 +09:00
|
|
|
use crate::{sys, Error, Result};
|
|
|
|
|
2021-01-07 12:34:49 +09:00
|
|
|
#[derive(Clone, Copy)]
|
2020-06-21 20:10:06 +09:00
|
|
|
pub struct JsBoolean(pub(crate) Value);
|
|
|
|
|
2021-11-02 21:36:34 +09:00
|
|
|
impl TypeName for JsBoolean {
|
|
|
|
fn type_name() -> &'static str {
|
|
|
|
"bool"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn value_type() -> crate::ValueType {
|
|
|
|
ValueType::Boolean
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-05 18:00:45 +09:00
|
|
|
impl ValidateNapiValue for JsBoolean {}
|
|
|
|
|
2020-06-21 20:10:06 +09:00
|
|
|
impl JsBoolean {
|
|
|
|
pub fn get_value(&self) -> Result<bool> {
|
|
|
|
let mut result = false;
|
2020-11-25 18:42:14 +09:00
|
|
|
check_status!(unsafe { sys::napi_get_value_bool(self.0.env, self.0.value, &mut result) })?;
|
2020-06-21 20:10:06 +09:00
|
|
|
Ok(result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryFrom<JsBoolean> for bool {
|
|
|
|
type Error = Error;
|
|
|
|
|
|
|
|
fn try_from(value: JsBoolean) -> Result<bool> {
|
|
|
|
value.get_value()
|
|
|
|
}
|
|
|
|
}
|