Enum jscjs_sys::api::JSType [−][src]
#[repr(u32)] pub enum JSType { kJSTypeUndefined, kJSTypeNull, kJSTypeBoolean, kJSTypeNumber, kJSTypeString, kJSTypeObject, kJSTypeSymbol, }
Expand description
@enum JSType @abstract A constant identifying the type of a JSValue. @constant kJSTypeUndefined The unique undefined value. @constant kJSTypeNull The unique null value. @constant kJSTypeBoolean A primitive boolean value, one of true or false. @constant kJSTypeNumber A primitive number value. @constant kJSTypeString A primitive string value. @constant kJSTypeObject An object value (meaning that this JSValueRef is a JSObjectRef). @constant kJSTypeSymbol A primitive symbol value.
Variants
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for JSType
impl UnwindSafe for JSType
Blanket Implementations
Mutably borrows from an owned value. Read more