2020-06-21 20:10:06 +09:00
|
|
|
use std::convert::TryFrom;
|
|
|
|
|
|
|
|
use super::Value;
|
2020-11-25 18:42:14 +09:00
|
|
|
use crate::check_status;
|
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);
|
|
|
|
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
}
|