pub struct PropertyDescriptorSetter {
pub honour_value: bool,
pub honour_writable: bool,
pub honour_set: bool,
pub honour_get: bool,
pub honour_enumerable: bool,
pub honour_configurable: bool,
pub descriptor: PropertyDescriptor,
}Fields§
§honour_value: bool§honour_writable: bool§honour_set: bool§honour_get: bool§honour_enumerable: bool§honour_configurable: bool§descriptor: PropertyDescriptorImplementations§
Source§impl PropertyDescriptorSetter
impl PropertyDescriptorSetter
pub fn new_from_property_descriptor(desc: PropertyDescriptor) -> Self
pub fn is_empty(&self) -> bool
pub fn are_all_fields_set(&self) -> bool
pub fn is_generic_descriptor(&self) -> bool
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PropertyDescriptorSetter
impl !RefUnwindSafe for PropertyDescriptorSetter
impl !Send for PropertyDescriptorSetter
impl !Sync for PropertyDescriptorSetter
impl Unpin for PropertyDescriptorSetter
impl !UnwindSafe for PropertyDescriptorSetter
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