pub struct GetPropertiesReturnBuilder { /* private fields */ }Available on crate feature
Runtime only.Implementations§
Source§impl GetPropertiesReturnBuilder
impl GetPropertiesReturnBuilder
Sourcepub fn result(&mut self, v: Vec<PropertyDescriptor>) -> &mut Self
pub fn result(&mut self, v: Vec<PropertyDescriptor>) -> &mut Self
Object properties.
Sourcepub fn internal_properties(
&mut self,
v: Vec<InternalPropertyDescriptor>,
) -> &mut Self
pub fn internal_properties( &mut self, v: Vec<InternalPropertyDescriptor>, ) -> &mut Self
Internal object properties (only of the element itself).
Sourcepub fn private_properties(&mut self, v: Vec<JsonValue>) -> &mut Self
Available on crate feature experimental only.
pub fn private_properties(&mut self, v: Vec<JsonValue>) -> &mut Self
experimental only.Object private properties.
Sourcepub fn exception_details(&mut self, v: ExceptionDetails) -> &mut Self
pub fn exception_details(&mut self, v: ExceptionDetails) -> &mut Self
Exception details.
pub fn build(&mut self) -> Result<GetPropertiesReturn, &'static str>
Trait Implementations§
Source§impl Clone for GetPropertiesReturnBuilder
impl Clone for GetPropertiesReturnBuilder
Source§fn clone(&self) -> GetPropertiesReturnBuilder
fn clone(&self) -> GetPropertiesReturnBuilder
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 GetPropertiesReturnBuilder
impl Debug for GetPropertiesReturnBuilder
Auto Trait Implementations§
impl Freeze for GetPropertiesReturnBuilder
impl RefUnwindSafe for GetPropertiesReturnBuilder
impl Send for GetPropertiesReturnBuilder
impl Sync for GetPropertiesReturnBuilder
impl Unpin for GetPropertiesReturnBuilder
impl UnwindSafe for GetPropertiesReturnBuilder
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