#[repr(transparent)]pub struct Object { /* private fields */ }
Expand description
Implementations
sourceimpl Object
impl Object
sourcepub fn constructor(&self) -> Function
pub fn constructor(&self) -> Function
The constructor property returns a reference to the Object
constructor
function that created the instance object.
sourceimpl Object
impl Object
sourceimpl Object
impl Object
sourceimpl Object
impl Object
sourcepub fn define_properties(obj: &Object, props: &Object) -> Object
pub fn define_properties(obj: &Object, props: &Object) -> Object
The Object.defineProperties()
method defines new or modifies
existing properties directly on an object, returning the
object.
sourceimpl Object
impl Object
sourcepub fn entries(object: &Object) -> Array
pub fn entries(object: &Object) -> Array
The Object.entries()
method returns an array of a given
object’s own enumerable property [key, value] pairs, in the
same order as that provided by a for…in loop (the difference
being that a for-in loop enumerates properties in the
prototype chain as well).
sourceimpl Object
impl Object
sourcepub fn freeze(value: &Object) -> Object
pub fn freeze(value: &Object) -> Object
The Object.freeze()
method freezes an object: that is, prevents new
properties from being added to it; prevents existing properties from
being removed; and prevents existing properties, or their enumerability,
configurability, or writability, from being changed, it also prevents
the prototype from being changed. The method returns the passed object.
sourceimpl Object
impl Object
sourceimpl Object
impl Object
sourcepub fn get_own_property_descriptor(obj: &Object, prop: &JsValue) -> JsValue
pub fn get_own_property_descriptor(obj: &Object, prop: &JsValue) -> JsValue
The Object.getOwnPropertyDescriptor()
method returns a
property descriptor for an own property (that is, one directly
present on an object and not in the object’s prototype chain)
of a given object.
sourceimpl Object
impl Object
sourcepub fn get_own_property_descriptors(obj: &Object) -> JsValue
pub fn get_own_property_descriptors(obj: &Object) -> JsValue
The Object.getOwnPropertyDescriptors()
method returns all own
property descriptors of a given object.
sourceimpl Object
impl Object
sourcepub fn get_own_property_names(obj: &Object) -> Array
pub fn get_own_property_names(obj: &Object) -> Array
The Object.getOwnPropertyNames()
method returns an array of
all properties (including non-enumerable properties except for
those which use Symbol) found directly upon a given object.
sourceimpl Object
impl Object
sourcepub fn get_own_property_symbols(obj: &Object) -> Array
pub fn get_own_property_symbols(obj: &Object) -> Array
The Object.getOwnPropertySymbols()
method returns an array of
all symbol properties found directly upon a given object.
sourceimpl Object
impl Object
sourcepub fn get_prototype_of(obj: &JsValue) -> Object
pub fn get_prototype_of(obj: &JsValue) -> Object
The Object.getPrototypeOf()
method returns the prototype
(i.e. the value of the internal [[Prototype]] property) of the
specified object.
sourceimpl Object
impl Object
sourcepub fn has_own_property(&self, property: &JsValue) -> bool
pub fn has_own_property(&self, property: &JsValue) -> bool
The hasOwnProperty()
method returns a boolean indicating whether the
object has the specified property as its own property (as opposed to
inheriting it).
sourceimpl Object
impl Object
sourcepub fn is_extensible(object: &Object) -> bool
pub fn is_extensible(object: &Object) -> bool
The Object.isExtensible()
method determines if an object is extensible
(whether it can have new properties added to it).
sourceimpl Object
impl Object
sourceimpl Object
impl Object
sourceimpl Object
impl Object
sourcepub fn is_prototype_of(&self, value: &JsValue) -> bool
pub fn is_prototype_of(&self, value: &JsValue) -> bool
The isPrototypeOf()
method checks if an object exists in another
object’s prototype chain.
sourceimpl Object
impl Object
sourceimpl Object
impl Object
sourcepub fn prevent_extensions(object: &Object)
pub fn prevent_extensions(object: &Object)
The Object.preventExtensions()
method prevents new properties from
ever being added to an object (i.e. prevents future extensions to the
object).
sourceimpl Object
impl Object
sourcepub fn property_is_enumerable(&self, property: &JsValue) -> bool
pub fn property_is_enumerable(&self, property: &JsValue) -> bool
The propertyIsEnumerable()
method returns a Boolean indicating
whether the specified property is enumerable.
sourceimpl Object
impl Object
sourceimpl Object
impl Object
sourcepub fn set_prototype_of(object: &Object, prototype: &Object) -> Object
pub fn set_prototype_of(object: &Object, prototype: &Object) -> Object
The Object.setPrototypeOf()
method sets the prototype (i.e., the
internal [[Prototype]]
property) of a specified object to another
object or null
.
sourceimpl Object
impl Object
sourcepub fn to_locale_string(&self) -> JsString
pub fn to_locale_string(&self) -> JsString
The toLocaleString()
method returns a string representing the object.
This method is meant to be overridden by derived objects for
locale-specific purposes.
sourceimpl Object
impl Object
sourceimpl Object
impl Object
sourceimpl Object
impl Object
Methods from Deref<Target = JsValue>
pub const NULL: JsValue
pub const UNDEFINED: JsValue
pub const TRUE: JsValue
pub const FALSE: JsValue
sourcepub fn as_f64(&self) -> Option<f64>
pub fn as_f64(&self) -> Option<f64>
Returns the f64
value of this JS value if it’s an instance of a
number.
If this JS value is not an instance of a number then this returns
None
.
sourcepub fn as_string(&self) -> Option<String>
pub fn as_string(&self) -> Option<String>
If this JS value is a string value, this function copies the JS string
value into wasm linear memory, encoded as UTF-8, and returns it as a
Rust String
.
To avoid the copying and re-encoding, consider the
JsString::try_from()
function from js-sys
instead.
If this JS value is not an instance of a string or if it’s not valid
utf-8 then this returns None
.
UTF-16 vs UTF-8
JavaScript strings in general are encoded as UTF-16, but Rust strings
are encoded as UTF-8. This can cause the Rust string to look a bit
different than the JS string sometimes. For more details see the
documentation about the str
type which contains a few
caveats about the encodings.
sourcepub fn as_bool(&self) -> Option<bool>
pub fn as_bool(&self) -> Option<bool>
Returns the bool
value of this JS value if it’s an instance of a
boolean.
If this JS value is not an instance of a boolean then this returns
None
.
sourcepub fn is_undefined(&self) -> bool
pub fn is_undefined(&self) -> bool
Tests whether this JS value is undefined
sourcepub fn is_function(&self) -> bool
pub fn is_function(&self) -> bool
Tests whether the type of this JS value is function
.
Trait Implementations
sourceimpl AsRef<Object> for ReferenceError
impl AsRef<Object> for ReferenceError
sourceimpl AsRef<Object> for SharedArrayBuffer
impl AsRef<Object> for SharedArrayBuffer
sourceimpl AsRef<Object> for DateTimeFormat
impl AsRef<Object> for DateTimeFormat
sourceimpl AsRef<Object> for Uint8ClampedArray
impl AsRef<Object> for Uint8ClampedArray
sourceimpl From<ArrayBuffer> for Object
impl From<ArrayBuffer> for Object
sourcefn from(obj: ArrayBuffer) -> Object
fn from(obj: ArrayBuffer) -> Object
Performs the conversion.
sourceimpl From<DateTimeFormat> for Object
impl From<DateTimeFormat> for Object
sourcefn from(obj: DateTimeFormat) -> Object
fn from(obj: DateTimeFormat) -> Object
Performs the conversion.
sourceimpl From<Float32Array> for Object
impl From<Float32Array> for Object
sourcefn from(obj: Float32Array) -> Object
fn from(obj: Float32Array) -> Object
Performs the conversion.
sourceimpl From<Float64Array> for Object
impl From<Float64Array> for Object
sourcefn from(obj: Float64Array) -> Object
fn from(obj: Float64Array) -> Object
Performs the conversion.
sourceimpl From<Int16Array> for Object
impl From<Int16Array> for Object
sourcefn from(obj: Int16Array) -> Object
fn from(obj: Int16Array) -> Object
Performs the conversion.
sourceimpl From<Int32Array> for Object
impl From<Int32Array> for Object
sourcefn from(obj: Int32Array) -> Object
fn from(obj: Int32Array) -> Object
Performs the conversion.
sourceimpl From<IteratorNext> for Object
impl From<IteratorNext> for Object
sourcefn from(obj: IteratorNext) -> Object
fn from(obj: IteratorNext) -> Object
Performs the conversion.
sourceimpl From<NumberFormat> for Object
impl From<NumberFormat> for Object
sourcefn from(obj: NumberFormat) -> Object
fn from(obj: NumberFormat) -> Object
Performs the conversion.
sourceimpl From<PluralRules> for Object
impl From<PluralRules> for Object
sourcefn from(obj: PluralRules) -> Object
fn from(obj: PluralRules) -> Object
Performs the conversion.
sourceimpl From<RangeError> for Object
impl From<RangeError> for Object
sourcefn from(obj: RangeError) -> Object
fn from(obj: RangeError) -> Object
Performs the conversion.
sourceimpl From<ReferenceError> for Object
impl From<ReferenceError> for Object
sourcefn from(obj: ReferenceError) -> Object
fn from(obj: ReferenceError) -> Object
Performs the conversion.
sourcefn from(obj: SharedArrayBuffer) -> Object
fn from(obj: SharedArrayBuffer) -> Object
Performs the conversion.
sourceimpl From<SyntaxError> for Object
impl From<SyntaxError> for Object
sourcefn from(obj: SyntaxError) -> Object
fn from(obj: SyntaxError) -> Object
Performs the conversion.
sourceimpl From<Uint16Array> for Object
impl From<Uint16Array> for Object
sourcefn from(obj: Uint16Array) -> Object
fn from(obj: Uint16Array) -> Object
Performs the conversion.
sourceimpl From<Uint32Array> for Object
impl From<Uint32Array> for Object
sourcefn from(obj: Uint32Array) -> Object
fn from(obj: Uint32Array) -> Object
Performs the conversion.
sourceimpl From<Uint8Array> for Object
impl From<Uint8Array> for Object
sourcefn from(obj: Uint8Array) -> Object
fn from(obj: Uint8Array) -> Object
Performs the conversion.
sourceimpl From<Uint8ClampedArray> for Object
impl From<Uint8ClampedArray> for Object
sourcefn from(obj: Uint8ClampedArray) -> Object
fn from(obj: Uint8ClampedArray) -> Object
Performs the conversion.
sourceimpl FromWasmAbi for Object
impl FromWasmAbi for Object
sourceimpl IntoWasmAbi for Object
impl IntoWasmAbi for Object
sourceimpl<'a> IntoWasmAbi for &'a Object
impl<'a> IntoWasmAbi for &'a Object
sourceimpl JsCast for Object
impl JsCast for Object
sourcefn instanceof(val: &JsValue) -> bool
fn instanceof(val: &JsValue) -> bool
Performs a dynamic instanceof
check to see whether the JsValue
provided is an instance of this type. Read more
sourcefn unchecked_from_js(val: JsValue) -> Self
fn unchecked_from_js(val: JsValue) -> Self
Performs a zero-cost unchecked conversion from a JsValue
into an
instance of Self
Read more
sourcefn unchecked_from_js_ref(val: &JsValue) -> &Self
fn unchecked_from_js_ref(val: &JsValue) -> &Self
Performs a zero-cost unchecked conversion from a &JsValue
into an
instance of &Self
. Read more
sourcefn has_type<T>(&self) -> bool where
T: JsCast,
fn has_type<T>(&self) -> bool where
T: JsCast,
Test whether this JS value has a type T
. Read more
sourcefn dyn_into<T>(self) -> Result<T, Self> where
T: JsCast,
fn dyn_into<T>(self) -> Result<T, Self> where
T: JsCast,
Performs a dynamic cast (checked at runtime) of this value into the
target type T
. Read more
sourcefn dyn_ref<T>(&self) -> Option<&T> where
T: JsCast,
fn dyn_ref<T>(&self) -> Option<&T> where
T: JsCast,
Performs a dynamic cast (checked at runtime) of this value into the
target type T
. Read more
sourcefn unchecked_into<T>(self) -> T where
T: JsCast,
fn unchecked_into<T>(self) -> T where
T: JsCast,
Performs a zero-cost unchecked cast into the specified type. Read more
sourcefn unchecked_ref<T>(&self) -> &T where
T: JsCast,
fn unchecked_ref<T>(&self) -> &T where
T: JsCast,
Performs a zero-cost unchecked cast into a reference to the specified type. Read more
sourcefn is_instance_of<T>(&self) -> bool where
T: JsCast,
fn is_instance_of<T>(&self) -> bool where
T: JsCast,
Test whether this JS value is an instance of the type T
. Read more
sourcefn is_type_of(val: &JsValue) -> bool
fn is_type_of(val: &JsValue) -> bool
Performs a dynamic check to see whether the JsValue
provided
is a value of this type. Read more
sourceimpl OptionFromWasmAbi for Object
impl OptionFromWasmAbi for Object
sourceimpl OptionIntoWasmAbi for Object
impl OptionIntoWasmAbi for Object
sourceimpl<'a> OptionIntoWasmAbi for &'a Object
impl<'a> OptionIntoWasmAbi for &'a Object
sourceimpl RefFromWasmAbi for Object
impl RefFromWasmAbi for Object
type Abi = <JsValue as RefFromWasmAbi>::Abi
type Abi = <JsValue as RefFromWasmAbi>::Abi
The wasm ABI type references to Self
are recovered from.
type Anchor = ManuallyDrop<Object>
type Anchor = ManuallyDrop<Object>
The type that holds the reference to Self
for the duration of the
invocation of the function that has an &Self
parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous. Read more
sourceunsafe fn ref_from_abi(js: Self::Abi) -> Self::Anchor
unsafe fn ref_from_abi(js: Self::Abi) -> Self::Anchor
Recover a Self::Anchor
from Self::Abi
. Read more
impl Eq for Object
Auto Trait Implementations
impl RefUnwindSafe for Object
impl !Send for Object
impl !Sync for Object
impl Unpin for Object
impl UnwindSafe for Object
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as IntoWasmAbi::Abi
sourcepub fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
pub fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more