Struct v8::PropertyFilter
source · #[repr(C)]pub struct PropertyFilter(_);
Implementations§
source§impl PropertyFilter
impl PropertyFilter
sourcepub fn is_all_properties(&self) -> bool
pub fn is_all_properties(&self) -> bool
Test if all property filters are set.
sourcepub fn is_only_writable(&self) -> bool
pub fn is_only_writable(&self) -> bool
Test if the only-writable property filter is set.
sourcepub fn is_only_enumerable(&self) -> bool
pub fn is_only_enumerable(&self) -> bool
Test if the only-enumerable property filter is set.
sourcepub fn is_only_configurable(&self) -> bool
pub fn is_only_configurable(&self) -> bool
Test if the only-configurable property filter is set.
sourcepub fn is_skip_strings(&self) -> bool
pub fn is_skip_strings(&self) -> bool
Test if the skip-strings property filter is set.
sourcepub fn is_skip_symbols(&self) -> bool
pub fn is_skip_symbols(&self) -> bool
Test if the skip-symbols property filter is set.
Trait Implementations§
source§impl BitOr<PropertyFilter> for PropertyFilter
impl BitOr<PropertyFilter> for PropertyFilter
source§impl Clone for PropertyFilter
impl Clone for PropertyFilter
source§fn clone(&self) -> PropertyFilter
fn clone(&self) -> PropertyFilter
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 PropertyFilter
impl Debug for PropertyFilter
source§impl Default for PropertyFilter
impl Default for PropertyFilter
source§impl PartialEq<PropertyFilter> for PropertyFilter
impl PartialEq<PropertyFilter> for PropertyFilter
source§fn eq(&self, other: &PropertyFilter) -> bool
fn eq(&self, other: &PropertyFilter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.