pub struct GetPropertiesReturns {
pub result: Vec<PropertyDescriptor>,
pub internalProperties: Option<Vec<InternalPropertyDescriptor>>,
pub privateProperties: Option<Vec<PrivatePropertyDescriptor>>,
pub exceptionDetails: Option<ExceptionDetails>,
}Expand description
Returns properties of a given object. Object group of the result is inherited from the target object.
Fields§
§result: Vec<PropertyDescriptor>Object properties.
internalProperties: Option<Vec<InternalPropertyDescriptor>>Internal object properties (only of the element itself).
privateProperties: Option<Vec<PrivatePropertyDescriptor>>Object private properties.
exceptionDetails: Option<ExceptionDetails>Exception details.
Trait Implementations§
Source§impl Clone for GetPropertiesReturns
impl Clone for GetPropertiesReturns
Source§fn clone(&self) -> GetPropertiesReturns
fn clone(&self) -> GetPropertiesReturns
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 GetPropertiesReturns
impl Debug for GetPropertiesReturns
Source§impl Default for GetPropertiesReturns
impl Default for GetPropertiesReturns
Source§fn default() -> GetPropertiesReturns
fn default() -> GetPropertiesReturns
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetPropertiesReturns
impl<'de> Deserialize<'de> for GetPropertiesReturns
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 GetPropertiesReturns
impl RefUnwindSafe for GetPropertiesReturns
impl Send for GetPropertiesReturns
impl Sync for GetPropertiesReturns
impl Unpin for GetPropertiesReturns
impl UnsafeUnpin for GetPropertiesReturns
impl UnwindSafe for GetPropertiesReturns
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