Struct rquickjs_core::object::Property
source · pub struct Property<T> { /* private fields */ }
Expand description
The data descriptor of a property
Implementations§
source§impl<T> Property<T>
impl<T> Property<T>
sourcepub fn configurable(self) -> Self
pub fn configurable(self) -> Self
Make the property to be configurable
sourcepub fn enumerable(self) -> Self
pub fn enumerable(self) -> Self
Make the property to be enumerable
Trait Implementations§
source§impl<'js, T> AsProperty<'js, T> for Property<T>where
T: IntoJs<'js>,
impl<'js, T> AsProperty<'js, T> for Property<T>where
T: IntoJs<'js>,
impl<T: Copy> Copy for Property<T>
Auto Trait Implementations§
impl<T> Freeze for Property<T>where
T: Freeze,
impl<T> RefUnwindSafe for Property<T>where
T: RefUnwindSafe,
impl<T> Send for Property<T>where
T: Send,
impl<T> Sync for Property<T>where
T: Sync,
impl<T> Unpin for Property<T>where
T: Unpin,
impl<T> UnwindSafe for Property<T>where
T: UnwindSafe,
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more