[][src]Struct rusty_v8::PropertyAttribute

#[repr(C)]pub struct PropertyAttribute(_);

Implementations

impl PropertyAttribute[src]

pub fn is_none(&self) -> bool[src]

Test if no property attributes are set.

pub fn is_read_only(&self) -> bool[src]

Test if the read-only property attribute is set.

pub fn is_dont_enum(&self) -> bool[src]

Test if the non-enumerable property attribute is set.

pub fn is_dont_delete(&self) -> bool[src]

Test if the non-configurable property attribute is set.

Trait Implementations

impl Add<PropertyAttribute> for PropertyAttribute[src]

type Output = Self

The resulting type after applying the + operator.

impl Debug for PropertyAttribute[src]

impl Default for PropertyAttribute[src]

impl Eq for PropertyAttribute[src]

impl PartialEq<PropertyAttribute> for PropertyAttribute[src]

impl StructuralEq for PropertyAttribute[src]

impl StructuralPartialEq for PropertyAttribute[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.