Struct neon::types::JsUndefined
source · #[repr(transparent)]pub struct JsUndefined(_);
Expand description
Implementations§
source§impl JsUndefined
impl JsUndefined
sourcepub fn new<'a, C: Context<'a>>(cx: &mut C) -> Handle<'a, JsUndefined>
pub fn new<'a, C: Context<'a>>(cx: &mut C) -> Handle<'a, JsUndefined>
Creates an undefined
value.
Although this method can be called many times, all undefined
values are indistinguishable.
See also: Context::undefined
Trait Implementations§
source§impl Debug for JsUndefined
impl Debug for JsUndefined
source§impl Value for JsUndefined
impl Value for JsUndefined
Auto Trait Implementations§
impl RefUnwindSafe for JsUndefined
impl !Send for JsUndefined
impl !Sync for JsUndefined
impl Unpin for JsUndefined
impl UnwindSafe for JsUndefined
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