Struct rquickjs::function::Constructor
source · pub struct Constructor<'js>(/* private fields */);Expand description
A function which can be used as a constructor.
Is a subtype of function.
Implementations§
source§impl<'js> Constructor<'js>
impl<'js> Constructor<'js>
sourcepub fn new_class<C, F, P>(
ctx: Ctx<'js>,
f: F
) -> Result<Constructor<'js>, Error>where
F: IntoJsFunc<'js, P> + 'js,
C: JsClass<'js>,
pub fn new_class<C, F, P>(
ctx: Ctx<'js>,
f: F
) -> Result<Constructor<'js>, Error>where
F: IntoJsFunc<'js, P> + 'js,
C: JsClass<'js>,
Creates a Rust constructor function for a Rust class.
Note that this function creates a constructor from a given function, the returned constructor
is thus not the same as the one returned from JsClass::constructor.
sourcepub fn new_prototype<F, P>(
ctx: &Ctx<'js>,
prototype: Object<'js>,
f: F
) -> Result<Constructor<'js>, Error>where
F: IntoJsFunc<'js, P> + 'js,
pub fn new_prototype<F, P>(
ctx: &Ctx<'js>,
prototype: Object<'js>,
f: F
) -> Result<Constructor<'js>, Error>where
F: IntoJsFunc<'js, P> + 'js,
Create a new Rust constructor function with a given prototype.
Useful if the function does not return a Rust class.
source§impl<'js> Constructor<'js>
impl<'js> Constructor<'js>
sourcepub fn into_value(self) -> Value<'js>
pub fn into_value(self) -> Value<'js>
Convert into value
sourcepub fn into_inner(self) -> Function<'js>
pub fn into_inner(self) -> Function<'js>
Returns the underlying super type.
sourcepub fn from_value(value: Value<'js>) -> Result<Constructor<'js>, Error>
pub fn from_value(value: Value<'js>) -> Result<Constructor<'js>, Error>
Convert from value
Methods from Deref<Target = Function<'js>>§
sourcepub fn call_arg<R>(&self, args: Args<'js>) -> Result<R, Error>where
R: FromJs<'js>,
pub fn call_arg<R>(&self, args: Args<'js>) -> Result<R, Error>where
R: FromJs<'js>,
Call the function with given arguments in the form of an Args object.
sourcepub fn defer<A>(&self, args: A) -> Result<(), Error>where
A: IntoArgs<'js>,
pub fn defer<A>(&self, args: A) -> Result<(), Error>where
A: IntoArgs<'js>,
Defer call the function with given arguments.
Calling a function with defer is equivalent to calling a JavaScript function with
setTimeout(func,0).
sourcepub fn defer_arg(&self, args: Args<'js>) -> Result<(), Error>
pub fn defer_arg(&self, args: Args<'js>) -> Result<(), Error>
Defer a function call with given arguments.
sourcepub fn set_length(&self, len: usize) -> Result<(), Error>
pub fn set_length(&self, len: usize) -> Result<(), Error>
Sets the length property of the function.
sourcepub fn is_constructor(&self) -> bool
pub fn is_constructor(&self) -> bool
Returns whether this function is an constructor.
sourcepub fn set_constructor(&self, is_constructor: bool)
pub fn set_constructor(&self, is_constructor: bool)
Set whether this function is a constructor or not.
Methods from Deref<Target = Object<'js>>§
sourcepub fn prop<K, V, P>(&self, key: K, prop: V) -> Result<(), Error>where
K: IntoAtom<'js>,
V: AsProperty<'js, P>,
Available on crate feature properties only.
pub fn prop<K, V, P>(&self, key: K, prop: V) -> Result<(), Error>where
K: IntoAtom<'js>,
V: AsProperty<'js, P>,
properties only.Define a property of an object
// Define readonly property without value
obj.prop("no_val", ()).unwrap();
// Define readonly property with value
obj.prop("ro_str", "Some const text").unwrap();
// Define readonly property with value and make it to be writable
obj.prop("ro_str2", Property::from("Some const text").writable()).unwrap();
// Define readonly property using getter and make it to be enumerable
obj.prop("ro_str_get", Accessor::from(|| "Some readable text").enumerable()).unwrap();
// Define readonly property using getter and setter
obj.prop("ro_str_get_set",
Accessor::from(|| "Some text")
.set(|new_val: String| { /* do something */ })
).unwrap();sourcepub fn contains_key<K>(&self, k: K) -> Result<bool, Error>where
K: IntoAtom<'js>,
pub fn contains_key<K>(&self, k: K) -> Result<bool, Error>where
K: IntoAtom<'js>,
check whether the object contains a certain key.
sourcepub fn set<K, V>(&self, key: K, value: V) -> Result<(), Error>
pub fn set<K, V>(&self, key: K, value: V) -> Result<(), Error>
Set a member of an object to a certain value
sourcepub fn remove<K>(&self, key: K) -> Result<(), Error>where
K: IntoAtom<'js>,
pub fn remove<K>(&self, key: K) -> Result<(), Error>where
K: IntoAtom<'js>,
Remove a member of an object
sourcepub fn keys<K>(&self) -> ObjectKeysIter<'js, K> ⓘwhere
K: FromAtom<'js>,
pub fn keys<K>(&self) -> ObjectKeysIter<'js, K> ⓘwhere
K: FromAtom<'js>,
Get own string enumerable property names of an object
sourcepub fn own_keys<K>(&self, filter: Filter) -> ObjectKeysIter<'js, K> ⓘwhere
K: FromAtom<'js>,
pub fn own_keys<K>(&self, filter: Filter) -> ObjectKeysIter<'js, K> ⓘwhere
K: FromAtom<'js>,
Get own property names of an object
sourcepub fn props<K, V>(&self) -> ObjectIter<'js, K, V> ⓘ
pub fn props<K, V>(&self) -> ObjectIter<'js, K, V> ⓘ
Get own string enumerable properties of an object
sourcepub fn own_props<K, V>(&self, filter: Filter) -> ObjectIter<'js, K, V> ⓘ
pub fn own_props<K, V>(&self, filter: Filter) -> ObjectIter<'js, K, V> ⓘ
Get own properties of an object
sourcepub fn values<K>(&self) -> ObjectValuesIter<'js, K> ⓘwhere
K: FromAtom<'js>,
pub fn values<K>(&self) -> ObjectValuesIter<'js, K> ⓘwhere
K: FromAtom<'js>,
Get own string enumerable property values of an object
sourcepub fn own_values<K>(&self, filter: Filter) -> ObjectValuesIter<'js, K> ⓘwhere
K: FromAtom<'js>,
pub fn own_values<K>(&self, filter: Filter) -> ObjectValuesIter<'js, K> ⓘwhere
K: FromAtom<'js>,
Get own property values of an object
sourcepub fn get_prototype(&self) -> Option<Object<'js>>
pub fn get_prototype(&self) -> Option<Object<'js>>
Get an object prototype
Objects can have no prototype, in this case this function will return null.
sourcepub fn set_prototype(&self, proto: Option<&Object<'js>>) -> Result<(), Error>
pub fn set_prototype(&self, proto: Option<&Object<'js>>) -> Result<(), Error>
Set an object prototype
If called with None the function will set the prototype of the object to null.
This function will error if setting the prototype causes a cycle in the prototype chain.
sourcepub fn is_instance_of(&self, class: impl AsRef<Value<'js>>) -> bool
pub fn is_instance_of(&self, class: impl AsRef<Value<'js>>) -> bool
Check instance of object
sourcepub fn is_array_buffer(&self) -> bool
pub fn is_array_buffer(&self) -> bool
Returns whether the object is an instance of ArrayBuffer.
sourcepub unsafe fn ref_array_buffer(&self) -> &ArrayBuffer<'_>
pub unsafe fn ref_array_buffer(&self) -> &ArrayBuffer<'_>
sourcepub fn as_array_buffer(&self) -> Option<&ArrayBuffer<'_>>
pub fn as_array_buffer(&self) -> Option<&ArrayBuffer<'_>>
Turn the object into an array buffer if the object is an instance of ArrayBuffer.
pub fn is_typed_array<T>(&self) -> boolwhere
T: TypedArrayItem,
sourcepub unsafe fn ref_typed_array<T, 'a>(&'a self) -> &'a TypedArray<'a, T>where
T: TypedArrayItem,
pub unsafe fn ref_typed_array<T, 'a>(&'a self) -> &'a TypedArray<'a, T>where
T: TypedArrayItem,
pub fn as_typed_array<T>(&self) -> Option<&TypedArray<'_, T>>where
T: TypedArrayItem,
sourcepub fn instance_of<C>(&self) -> boolwhere
C: JsClass<'js>,
pub fn instance_of<C>(&self) -> boolwhere
C: JsClass<'js>,
Returns if the object is of a certain Rust class.
Methods from Deref<Target = Value<'js>>§
sourcepub fn is_undefined(&self) -> bool
pub fn is_undefined(&self) -> bool
Returns if the value is the JavaScript undefined value.
sourcepub fn is_function(&self) -> bool
pub fn is_function(&self) -> bool
Check if the value is a function
sourcepub fn is_constructor(&self) -> bool
pub fn is_constructor(&self) -> bool
Check if the value is a constructor function
sourcepub fn is_exception(&self) -> bool
pub fn is_exception(&self) -> bool
Check if the value is an exception
sourcepub fn get<T>(&self) -> Result<T, Error>where
T: FromJs<'js>,
pub fn get<T>(&self) -> Result<T, Error>where
T: FromJs<'js>,
Convert from value to specified type
sourcepub unsafe fn ref_string(&self) -> &String<'js>
pub unsafe fn ref_string(&self) -> &String<'js>
sourcepub unsafe fn ref_symbol(&self) -> &Symbol<'js>
pub unsafe fn ref_symbol(&self) -> &Symbol<'js>
sourcepub unsafe fn ref_object(&self) -> &Object<'js>
pub unsafe fn ref_object(&self) -> &Object<'js>
sourcepub unsafe fn ref_function(&self) -> &Function<'js>
pub unsafe fn ref_function(&self) -> &Function<'js>
sourcepub fn as_function(&self) -> Option<&Function<'js>>
pub fn as_function(&self) -> Option<&Function<'js>>
Try reinterpret as Function
sourcepub unsafe fn ref_constructor(&self) -> &Constructor<'js>
pub unsafe fn ref_constructor(&self) -> &Constructor<'js>
Interpret as Constructor
Safety
You should be sure that the value already is of required type before to do it.
sourcepub fn as_constructor(&self) -> Option<&Constructor<'js>>
pub fn as_constructor(&self) -> Option<&Constructor<'js>>
Try reinterpret as Constructor
sourcepub unsafe fn ref_exception(&self) -> &Exception<'js>
pub unsafe fn ref_exception(&self) -> &Exception<'js>
sourcepub fn as_exception(&self) -> Option<&Exception<'js>>
pub fn as_exception(&self) -> Option<&Exception<'js>>
Try reinterpret as Exception
sourcepub unsafe fn ref_big_int(&self) -> &BigInt<'js>
pub unsafe fn ref_big_int(&self) -> &BigInt<'js>
sourcepub fn as_big_int(&self) -> Option<&BigInt<'js>>
pub fn as_big_int(&self) -> Option<&BigInt<'js>>
Try reinterpret as BigInt
Trait Implementations§
source§impl<'js> AsRef<Function<'js>> for Constructor<'js>
impl<'js> AsRef<Function<'js>> for Constructor<'js>
source§impl<'js> AsRef<Value<'js>> for Constructor<'js>
impl<'js> AsRef<Value<'js>> for Constructor<'js>
source§impl<'js> Clone for Constructor<'js>
impl<'js> Clone for Constructor<'js>
source§fn clone(&self) -> Constructor<'js>
fn clone(&self) -> Constructor<'js>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl<'js> Debug for Constructor<'js>
impl<'js> Debug for Constructor<'js>
source§impl<'js> Deref for Constructor<'js>
impl<'js> Deref for Constructor<'js>
source§impl<'js> From<Constructor<'js>> for Value<'js>
impl<'js> From<Constructor<'js>> for Value<'js>
source§fn from(value: Constructor<'js>) -> Value<'js>
fn from(value: Constructor<'js>) -> Value<'js>
source§impl<'js> FromJs<'js> for Constructor<'js>
impl<'js> FromJs<'js> for Constructor<'js>
source§impl<'js> IntoAtom<'js> for Constructor<'js>
impl<'js> IntoAtom<'js> for Constructor<'js>
source§impl<'js> IntoJs<'js> for Constructor<'js>
impl<'js> IntoJs<'js> for Constructor<'js>
source§impl<'js> Outlive<'js> for Constructor<'js>
impl<'js> Outlive<'js> for Constructor<'js>
§type Target<'to> = Constructor<'to>
type Target<'to> = Constructor<'to>
Self but with another lifetime 't