pub struct PropertyAttributes {
pub writable: bool,
pub configurable: bool,
pub enumerable: bool,
}Fields§
§writable: bool§configurable: bool§enumerable: boolTrait Implementations§
Source§impl Clone for PropertyAttributes
impl Clone for PropertyAttributes
Source§fn clone(&self) -> PropertyAttributes
fn clone(&self) -> PropertyAttributes
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PropertyAttributes
Source§impl Debug for PropertyAttributes
impl Debug for PropertyAttributes
Source§impl Default for PropertyAttributes
impl Default for PropertyAttributes
Source§impl PartialEq for PropertyAttributes
impl PartialEq for PropertyAttributes
Source§fn eq(&self, other: &PropertyAttributes) -> bool
fn eq(&self, other: &PropertyAttributes) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PropertyAttributes
Auto Trait Implementations§
impl Freeze for PropertyAttributes
impl RefUnwindSafe for PropertyAttributes
impl Send for PropertyAttributes
impl Sync for PropertyAttributes
impl Unpin for PropertyAttributes
impl UnsafeUnpin for PropertyAttributes
impl UnwindSafe for PropertyAttributes
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