Struct js::front::stdlib::object::Property[src]
pub struct Property {
pub configurable: bool,
pub enumerable: bool,
pub writable: bool,
pub value: Value,
pub get: Value,
pub set: Value,
}A Javascript property
Fields
configurable | If the type of this can be changed and this can be deleted |
enumerable | If the property shows up in enumeration of the object |
writable | If this property can be changed with an assignment |
value | The value associated with the property |
get | The function serving as getter |
set | The function serving as setter |