use std::convert::TryFrom; use super::Value; use crate::check_status; use crate::{sys, Error, Result}; #[derive(Clone, Copy)] pub struct JsNumber(pub(crate) Value); impl JsNumber { pub fn get_uint32(&self) -> Result { let mut result = 0; check_status!(unsafe { sys::napi_get_value_uint32(self.0.env, self.0.value, &mut result) })?; Ok(result) } pub fn get_int32(&self) -> Result { let mut result = 0; check_status!(unsafe { sys::napi_get_value_int32(self.0.env, self.0.value, &mut result) })?; Ok(result) } pub fn get_int64(&self) -> Result { let mut result = 0; check_status!(unsafe { sys::napi_get_value_int64(self.0.env, self.0.value, &mut result) })?; Ok(result) } pub fn get_double(&self) -> Result { let mut result = 0_f64; check_status!(unsafe { sys::napi_get_value_double(self.0.env, self.0.value, &mut result) })?; Ok(result) } } impl TryFrom for u32 { type Error = Error; fn try_from(value: JsNumber) -> Result { let mut result = 0; check_status!(unsafe { sys::napi_get_value_uint32(value.0.env, value.0.value, &mut result) })?; Ok(result) } } impl TryFrom for i32 { type Error = Error; fn try_from(value: JsNumber) -> Result { let mut result = 0; check_status!(unsafe { sys::napi_get_value_int32(value.0.env, value.0.value, &mut result) })?; Ok(result) } } impl TryFrom for i64 { type Error = Error; fn try_from(value: JsNumber) -> Result { let mut result = 0; check_status!(unsafe { sys::napi_get_value_int64(value.0.env, value.0.value, &mut result) })?; Ok(result) } } impl TryFrom for f64 { type Error = Error; fn try_from(value: JsNumber) -> Result { let mut result = 0_f64; check_status!(unsafe { sys::napi_get_value_double(value.0.env, value.0.value, &mut result) })?; Ok(result) } }