#[repr(C)]pub struct JSStaticValue {
pub name: *const c_char,
pub getProperty: JSObjectGetPropertyCallback,
pub setProperty: JSObjectSetPropertyCallback,
pub attributes: JSPropertyAttributes,
}Expand description
A statically declared value property.
Fields§
§name: *const c_charA null-terminated UTF8 string containing the property’s name.
getProperty: JSObjectGetPropertyCallbackA JSObjectGetPropertyCallback to invoke when getting the property’s value.
setProperty: JSObjectSetPropertyCallbackA JSObjectSetPropertyCallback to invoke when setting the property’s value.
May be NULL if the ReadOnly attribute is set.
attributes: JSPropertyAttributesA logically ORed set of JSPropertyAttributes to give to the property.
Trait Implementations§
Source§impl Clone for JSStaticValue
impl Clone for JSStaticValue
Source§fn clone(&self) -> JSStaticValue
fn clone(&self) -> JSStaticValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for JSStaticValue
impl Debug for JSStaticValue
impl Copy for JSStaticValue
Auto Trait Implementations§
impl Freeze for JSStaticValue
impl RefUnwindSafe for JSStaticValue
impl !Send for JSStaticValue
impl !Sync for JSStaticValue
impl Unpin for JSStaticValue
impl UnwindSafe for JSStaticValue
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