pub struct GetPropertiesReturnObject {
pub result: Vec<PropertyDescriptor>,
pub internal_properties: Option<Vec<InternalPropertyDescriptor>>,
pub private_properties: Option<Vec<PrivatePropertyDescriptor>>,
pub exception_details: Option<ExceptionDetails>,
}Fields§
§result: Vec<PropertyDescriptor>§internal_properties: Option<Vec<InternalPropertyDescriptor>>§private_properties: Option<Vec<PrivatePropertyDescriptor>>§exception_details: Option<ExceptionDetails>Trait Implementations§
Source§impl Clone for GetPropertiesReturnObject
impl Clone for GetPropertiesReturnObject
Source§fn clone(&self) -> GetPropertiesReturnObject
fn clone(&self) -> GetPropertiesReturnObject
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 GetPropertiesReturnObject
impl Debug for GetPropertiesReturnObject
Source§impl<'de> Deserialize<'de> for GetPropertiesReturnObject
impl<'de> Deserialize<'de> for GetPropertiesReturnObject
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
impl StructuralPartialEq for GetPropertiesReturnObject
Auto Trait Implementations§
impl Freeze for GetPropertiesReturnObject
impl RefUnwindSafe for GetPropertiesReturnObject
impl Send for GetPropertiesReturnObject
impl Sync for GetPropertiesReturnObject
impl Unpin for GetPropertiesReturnObject
impl UnwindSafe for GetPropertiesReturnObject
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