pub struct GetPropertiesCommand { /* private fields */ }Available on crate feature
Runtime only.Expand description
Returns properties of a given object. Object group of the result is inherited from the target object.
Implementations§
Source§impl GetPropertiesCommand
impl GetPropertiesCommand
pub fn builder() -> GetPropertiesCommandBuilder
Sourcepub fn object_id(&self) -> &RemoteObjectId
pub fn object_id(&self) -> &RemoteObjectId
Identifier of the object to return properties for.
Sourcepub fn own_properties(&self) -> Option<&bool>
pub fn own_properties(&self) -> Option<&bool>
If true, returns properties belonging only to the element itself, not to its prototype chain.
Sourcepub fn accessor_properties_only(&self) -> Option<&bool>
Available on crate feature experimental only.
pub fn accessor_properties_only(&self) -> Option<&bool>
experimental only.If true, returns accessor properties (with getter/setter) only; internal properties are not returned either.
Sourcepub fn generate_preview(&self) -> Option<&bool>
Available on crate feature experimental only.
pub fn generate_preview(&self) -> Option<&bool>
experimental only.Whether preview should be generated for the results.
Trait Implementations§
Source§impl Clone for GetPropertiesCommand
impl Clone for GetPropertiesCommand
Source§fn clone(&self) -> GetPropertiesCommand
fn clone(&self) -> GetPropertiesCommand
Returns a duplicate 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 Command for GetPropertiesCommand
impl Command for GetPropertiesCommand
Source§impl Debug for GetPropertiesCommand
impl Debug for GetPropertiesCommand
Source§impl<'de> Deserialize<'de> for GetPropertiesCommand
impl<'de> Deserialize<'de> for GetPropertiesCommand
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GetPropertiesCommand
impl RefUnwindSafe for GetPropertiesCommand
impl Send for GetPropertiesCommand
impl Sync for GetPropertiesCommand
impl Unpin for GetPropertiesCommand
impl UnwindSafe for GetPropertiesCommand
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