#[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_char
A null-terminated UTF8 string containing the property’s name.
getProperty: JSObjectGetPropertyCallback
A JSObjectGetPropertyCallback
to invoke when getting the property’s value.
setProperty: JSObjectSetPropertyCallback
A JSObjectSetPropertyCallback
to invoke when setting the property’s value.
May be NULL
if the ReadOnly
attribute is set.
attributes: JSPropertyAttributes
A 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 copy 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