pub struct GetPropertiesReturns<'a> { /* private fields */ }Expand description
Returns properties of a given object. Object group of the result is inherited from the target object.
Implementations§
Source§impl<'a> GetPropertiesReturns<'a>
impl<'a> GetPropertiesReturns<'a>
Sourcepub fn builder(
result: Vec<PropertyDescriptor<'a>>,
) -> GetPropertiesReturnsBuilder<'a>
pub fn builder( result: Vec<PropertyDescriptor<'a>>, ) -> GetPropertiesReturnsBuilder<'a>
Creates a builder for this type with the required parameters:
result: Object properties.
Sourcepub fn result(&self) -> &[PropertyDescriptor<'a>]
pub fn result(&self) -> &[PropertyDescriptor<'a>]
Object properties.
Sourcepub fn internal_properties(&self) -> Option<&[InternalPropertyDescriptor<'a>]>
pub fn internal_properties(&self) -> Option<&[InternalPropertyDescriptor<'a>]>
Internal object properties (only of the element itself).
Sourcepub fn private_properties(&self) -> Option<&[PrivatePropertyDescriptor<'a>]>
pub fn private_properties(&self) -> Option<&[PrivatePropertyDescriptor<'a>]>
Object private properties.
Sourcepub fn exception_details(&self) -> Option<&ExceptionDetails<'a>>
pub fn exception_details(&self) -> Option<&ExceptionDetails<'a>>
Exception details.
Trait Implementations§
Source§impl<'a> Clone for GetPropertiesReturns<'a>
impl<'a> Clone for GetPropertiesReturns<'a>
Source§fn clone(&self) -> GetPropertiesReturns<'a>
fn clone(&self) -> GetPropertiesReturns<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for GetPropertiesReturns<'a>
impl<'a> Debug for GetPropertiesReturns<'a>
Source§impl<'a> Default for GetPropertiesReturns<'a>
impl<'a> Default for GetPropertiesReturns<'a>
Source§fn default() -> GetPropertiesReturns<'a>
fn default() -> GetPropertiesReturns<'a>
Returns the “default value” for a type. Read more
Source§impl<'de, 'a> Deserialize<'de> for GetPropertiesReturns<'a>
impl<'de, 'a> Deserialize<'de> for GetPropertiesReturns<'a>
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<'a> Freeze for GetPropertiesReturns<'a>
impl<'a> RefUnwindSafe for GetPropertiesReturns<'a>
impl<'a> Send for GetPropertiesReturns<'a>
impl<'a> Sync for GetPropertiesReturns<'a>
impl<'a> Unpin for GetPropertiesReturns<'a>
impl<'a> UnsafeUnpin for GetPropertiesReturns<'a>
impl<'a> UnwindSafe for GetPropertiesReturns<'a>
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