pub struct GetPropertiesParams {
pub object_id: String,
pub own_properties: Option<bool>,
pub accessor_properties_only: Option<bool>,
pub generate_preview: Option<bool>,
pub non_indexed_properties_only: Option<bool>,
}Expand description
Parameters for Runtime.getProperties.
Fields§
§object_id: StringIdentifier of the object to return properties for.
own_properties: Option<bool>If true, returns properties belonging only to the element itself.
accessor_properties_only: Option<bool>If true, returns accessor properties only.
generate_preview: Option<bool>Whether preview should be generated for the results.
non_indexed_properties_only: Option<bool>If true, returns non-indexed properties only.
Trait Implementations§
Source§impl Clone for GetPropertiesParams
impl Clone for GetPropertiesParams
Source§fn clone(&self) -> GetPropertiesParams
fn clone(&self) -> GetPropertiesParams
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 GetPropertiesParams
impl Debug for GetPropertiesParams
Auto Trait Implementations§
impl Freeze for GetPropertiesParams
impl RefUnwindSafe for GetPropertiesParams
impl Send for GetPropertiesParams
impl Sync for GetPropertiesParams
impl Unpin for GetPropertiesParams
impl UnwindSafe for GetPropertiesParams
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