2020-06-21 20:10:06 +09:00
|
|
|
use std::convert::TryFrom;
|
|
|
|
|
|
|
|
use super::Value;
|
|
|
|
use crate::error::check_status;
|
|
|
|
use crate::{sys, Error, Result};
|
|
|
|
|
2020-09-28 01:27:37 +09:00
|
|
|
#[repr(transparent)]
|
2020-08-10 13:37:58 +09:00
|
|
|
#[derive(Debug)]
|
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;
|
|
|
|
check_status(unsafe { sys::napi_get_value_bool(self.0.env, self.0.value, &mut result) })?;
|
|
|
|
Ok(result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryFrom<JsBoolean> for bool {
|
|
|
|
type Error = Error;
|
|
|
|
|
|
|
|
fn try_from(value: JsBoolean) -> Result<bool> {
|
|
|
|
value.get_value()
|
|
|
|
}
|
|
|
|
}
|