Struct cdp::runtime::InternalPropertyDescriptor
[−]
[src]
pub struct InternalPropertyDescriptor<'a> { pub name: Cow<'a, str>, pub value: Option<RemoteObject<'a>>, }
Object internal property descriptor. This property isn't normally visible in JavaScript code.
Fields
name: Cow<'a, str>
Conventional property name.
value: Option<RemoteObject<'a>>
The value associated with the property.
Trait Implementations
impl<'a> Clone for InternalPropertyDescriptor<'a>
[src]
fn clone(&self) -> InternalPropertyDescriptor<'a>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<'a> Debug for InternalPropertyDescriptor<'a>
[src]
impl<'a> PartialEq for InternalPropertyDescriptor<'a>
[src]
fn eq(&self, __arg_0: &InternalPropertyDescriptor<'a>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &InternalPropertyDescriptor<'a>) -> bool
[src]
This method tests for !=
.