pub struct GetPropertiesReturn { /* private fields */ }Available on crate feature
Runtime only.Expand description
Returns properties of a given object. Object group of the result is inherited from the target object.
Implementations§
Source§impl GetPropertiesReturn
impl GetPropertiesReturn
pub fn builder() -> GetPropertiesReturnBuilder
Sourcepub fn result(&self) -> &[PropertyDescriptor]
pub fn result(&self) -> &[PropertyDescriptor]
Object properties.
Sourcepub fn internal_properties(&self) -> Option<&Vec<InternalPropertyDescriptor>>
pub fn internal_properties(&self) -> Option<&Vec<InternalPropertyDescriptor>>
Internal object properties (only of the element itself).
Sourcepub fn private_properties(&self) -> Option<&Vec<JsonValue>>
Available on crate feature experimental only.
pub fn private_properties(&self) -> Option<&Vec<JsonValue>>
experimental only.Object private properties.
Sourcepub fn exception_details(&self) -> Option<&ExceptionDetails>
pub fn exception_details(&self) -> Option<&ExceptionDetails>
Exception details.
Trait Implementations§
Source§impl Clone for GetPropertiesReturn
impl Clone for GetPropertiesReturn
Source§fn clone(&self) -> GetPropertiesReturn
fn clone(&self) -> GetPropertiesReturn
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 GetPropertiesReturn
impl Debug for GetPropertiesReturn
Source§impl<'de> Deserialize<'de> for GetPropertiesReturn
impl<'de> Deserialize<'de> for GetPropertiesReturn
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 GetPropertiesReturn
impl RefUnwindSafe for GetPropertiesReturn
impl Send for GetPropertiesReturn
impl Sync for GetPropertiesReturn
impl Unpin for GetPropertiesReturn
impl UnwindSafe for GetPropertiesReturn
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