Trait javascriptcore::prelude::ValueExt
source · [−]pub trait ValueExt: 'static {
Show 35 methods
fn array_buffer_get_size(&self) -> usize;
fn constructor_callv(&self, parameters: &[Value]) -> Option<Value>;
fn function_callv(&self, parameters: &[Value]) -> Option<Value>;
fn context(&self) -> Option<Context>;
fn is_array(&self) -> bool;
fn is_array_buffer(&self) -> bool;
fn is_boolean(&self) -> bool;
fn is_constructor(&self) -> bool;
fn is_function(&self) -> bool;
fn is_null(&self) -> bool;
fn is_number(&self) -> bool;
fn is_object(&self) -> bool;
fn is_string(&self) -> bool;
fn is_typed_array(&self) -> bool;
fn is_undefined(&self) -> bool;
fn object_define_property_data(
&self,
property_name: &str,
flags: ValuePropertyFlags,
property_value: Option<&impl IsA<Value>>
);
fn object_delete_property(&self, name: &str) -> bool;
fn object_enumerate_properties(&self) -> Vec<GString>;
fn object_get_property(&self, name: &str) -> Option<Value>;
fn object_get_property_at_index(&self, index: u32) -> Option<Value>;
fn object_has_property(&self, name: &str) -> bool;
fn object_invoke_methodv(
&self,
name: &str,
parameters: &[Value]
) -> Option<Value>;
fn object_is_instance_of(&self, name: &str) -> bool;
fn object_set_property(&self, name: &str, property: &impl IsA<Value>);
fn object_set_property_at_index(&self, index: u32, property: &impl IsA<Value>);
fn to_boolean(&self) -> bool;
fn to_double(&self) -> f64;
fn to_int32(&self) -> i32;
fn to_json(&self, indent: u32) -> Option<GString>;
fn to_str(&self) -> GString;
fn to_string_as_bytes(&self) -> Option<Bytes>;
fn typed_array_get_buffer(&self) -> Option<Value>;
fn typed_array_get_length(&self) -> usize;
fn typed_array_get_offset(&self) -> usize;
fn typed_array_get_size(&self) -> usize;
}
Expand description
Required Methods
sourcefn array_buffer_get_size(&self) -> usize
fn array_buffer_get_size(&self) -> usize
v2_38
only.Gets the size in bytes of the array buffer.
Obtains the size in bytes of the memory region that holds the contents of
an ArrayBuffer
.
Returns
size, in bytes.
sourcefn constructor_callv(&self, parameters: &[Value]) -> Option<Value>
fn constructor_callv(&self, parameters: &[Value]) -> Option<Value>
Invoke <function>
new</function>
with constructor referenced by self
. If n_parameters
is 0 no parameters will be passed to the constructor.
parameters
the Value
s to pass as parameters to the constructor, or None
Returns
a Value
referencing the newly created object instance.
sourcefn function_callv(&self, parameters: &[Value]) -> Option<Value>
fn function_callv(&self, parameters: &[Value]) -> Option<Value>
Call function referenced by self
, passing the given parameters
. If n_parameters
is 0 no parameters will be passed to the function.
This function always returns a Value
, in case of void functions a Value
referencing
<function>
undefined</function>
is returned
parameters
the Value
s to pass as parameters to the function, or None
Returns
a Value
with the return value of the function.
sourcefn is_array_buffer(&self) -> bool
fn is_array_buffer(&self) -> bool
v2_38
only.sourcefn is_boolean(&self) -> bool
fn is_boolean(&self) -> bool
sourcefn is_constructor(&self) -> bool
fn is_constructor(&self) -> bool
Get whether the value referenced by self
is a constructor.
Returns
whether the value is a constructor.
sourcefn is_function(&self) -> bool
fn is_function(&self) -> bool
sourcefn is_null(&self) -> bool
fn is_null(&self) -> bool
Get whether the value referenced by self
is <function>
null</function>
.
Returns
whether the value is null.
sourcefn is_typed_array(&self) -> bool
fn is_typed_array(&self) -> bool
v2_38
only.sourcefn is_undefined(&self) -> bool
fn is_undefined(&self) -> bool
Get whether the value referenced by self
is <function>
undefined</function>
.
Returns
whether the value is undefined.
sourcefn object_define_property_data(
&self,
property_name: &str,
flags: ValuePropertyFlags,
property_value: Option<&impl IsA<Value>>
)
fn object_define_property_data(
&self,
property_name: &str,
flags: ValuePropertyFlags,
property_value: Option<&impl IsA<Value>>
)
Define or modify a property with property_name
in object referenced by self
. This is equivalent to
JavaScript <function>
Object.defineProperty()</function>
when used with a data descriptor.
property_name
the name of the property to define
flags
property_value
the default property value
sourcefn object_delete_property(&self, name: &str) -> bool
fn object_delete_property(&self, name: &str) -> bool
sourcefn object_enumerate_properties(&self) -> Vec<GString>
fn object_enumerate_properties(&self) -> Vec<GString>
Get the list of property names of self
. Only properties defined with ValuePropertyFlags::ENUMERABLE
flag will be collected.
Returns
a None
-terminated array of strings containing the
property names, or None
if self
doesn’t have enumerable properties. Use g_strfreev()
to free.
sourcefn object_get_property(&self, name: &str) -> Option<Value>
fn object_get_property(&self, name: &str) -> Option<Value>
sourcefn object_get_property_at_index(&self, index: u32) -> Option<Value>
fn object_get_property_at_index(&self, index: u32) -> Option<Value>
sourcefn object_has_property(&self, name: &str) -> bool
fn object_has_property(&self, name: &str) -> bool
sourcefn object_invoke_methodv(&self, name: &str, parameters: &[Value]) -> Option<Value>
fn object_invoke_methodv(&self, name: &str, parameters: &[Value]) -> Option<Value>
Invoke method with name
on object referenced by self
, passing the given parameters
. If
n_parameters
is 0 no parameters will be passed to the method.
The object instance will be handled automatically even when the method is a custom one
registered with jsc_class_add_method()
, so it should never be passed explicitly as parameter
of this function.
This function always returns a Value
, in case of void methods a Value
referencing
<function>
undefined</function>
is returned.
name
the method name
parameters
the Value
s to pass as parameters to the method, or None
Returns
a Value
with the return value of the method.
sourcefn object_is_instance_of(&self, name: &str) -> bool
fn object_is_instance_of(&self, name: &str) -> bool
sourcefn object_set_property(&self, name: &str, property: &impl IsA<Value>)
fn object_set_property(&self, name: &str, property: &impl IsA<Value>)
sourcefn object_set_property_at_index(&self, index: u32, property: &impl IsA<Value>)
fn object_set_property_at_index(&self, index: u32, property: &impl IsA<Value>)
sourcefn to_boolean(&self) -> bool
fn to_boolean(&self) -> bool
sourcefn to_str(&self) -> GString
fn to_str(&self) -> GString
Convert self
to a string. Use to_string_as_bytes()
instead, if you need to
handle strings containing null characters.
Returns
a null-terminated string result of the conversion.
sourcefn to_string_as_bytes(&self) -> Option<Bytes>
fn to_string_as_bytes(&self) -> Option<Bytes>
Convert self
to a string and return the results as glib::Bytes
. This is needed
to handle strings with null characters.
Returns
a glib::Bytes
with the result of the conversion.
sourcefn typed_array_get_buffer(&self) -> Option<Value>
fn typed_array_get_buffer(&self) -> Option<Value>
v2_38
only.sourcefn typed_array_get_length(&self) -> usize
fn typed_array_get_length(&self) -> usize
v2_38
only.sourcefn typed_array_get_offset(&self) -> usize
fn typed_array_get_offset(&self) -> usize
v2_38
only.sourcefn typed_array_get_size(&self) -> usize
fn typed_array_get_size(&self) -> usize
v2_38
only.