pub struct JsBoolean(/* private fields */);
Implementations§
Source§impl JsBoolean
impl JsBoolean
pub fn into_unknown(self) -> JsUnknown
pub fn coerce_to_number(self) -> Result<JsNumber>
pub fn coerce_to_string(self) -> Result<JsString>
pub fn coerce_to_object(self) -> Result<JsObject>
pub fn is_date(&self) -> Result<bool>
pub fn is_promise(&self) -> Result<bool>
pub fn is_error(&self) -> Result<bool>
pub fn is_typedarray(&self) -> Result<bool>
pub fn is_dataview(&self) -> Result<bool>
pub fn is_array(&self) -> Result<bool>
pub fn is_buffer(&self) -> Result<bool>
pub fn instanceof<Constructor>(&self, constructor: Constructor) -> Result<bool>where
Constructor: NapiRaw,
pub fn freeze(&mut self) -> Result<()>
pub fn seal(&mut self) -> Result<()>
Trait Implementations§
Source§impl NapiValue for JsBoolean
impl NapiValue for JsBoolean
unsafe fn from_raw(env: napi_env, value: napi_value) -> Result<JsBoolean>
unsafe fn from_raw_unchecked(env: napi_env, value: napi_value) -> JsBoolean
impl Copy for JsBoolean
Auto Trait Implementations§
impl Freeze for JsBoolean
impl RefUnwindSafe for JsBoolean
impl !Send for JsBoolean
impl !Sync for JsBoolean
impl Unpin for JsBoolean
impl UnwindSafe for JsBoolean
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more