pub struct GetPropertiesCommandBuilder { /* private fields */ }Available on crate feature
Runtime only.Implementations§
Source§impl GetPropertiesCommandBuilder
impl GetPropertiesCommandBuilder
Sourcepub fn object_id(&mut self, v: RemoteObjectId) -> &mut Self
pub fn object_id(&mut self, v: RemoteObjectId) -> &mut Self
Identifier of the object to return properties for.
Sourcepub fn own_properties(&mut self, v: bool) -> &mut Self
pub fn own_properties(&mut self, v: bool) -> &mut Self
If true, returns properties belonging only to the element itself, not to its prototype chain.
Sourcepub fn accessor_properties_only(&mut self, v: bool) -> &mut Self
Available on crate feature experimental only.
pub fn accessor_properties_only(&mut self, v: bool) -> &mut Self
experimental only.If true, returns accessor properties (with getter/setter) only; internal properties are not returned either.
Sourcepub fn generate_preview(&mut self, v: bool) -> &mut Self
Available on crate feature experimental only.
pub fn generate_preview(&mut self, v: bool) -> &mut Self
experimental only.Whether preview should be generated for the results.
pub fn build(&mut self) -> Result<GetPropertiesCommand, &'static str>
Trait Implementations§
Source§impl Clone for GetPropertiesCommandBuilder
impl Clone for GetPropertiesCommandBuilder
Source§fn clone(&self) -> GetPropertiesCommandBuilder
fn clone(&self) -> GetPropertiesCommandBuilder
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 Debug for GetPropertiesCommandBuilder
impl Debug for GetPropertiesCommandBuilder
Auto Trait Implementations§
impl Freeze for GetPropertiesCommandBuilder
impl RefUnwindSafe for GetPropertiesCommandBuilder
impl Send for GetPropertiesCommandBuilder
impl Sync for GetPropertiesCommandBuilder
impl Unpin for GetPropertiesCommandBuilder
impl UnwindSafe for GetPropertiesCommandBuilder
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