pub struct JsonObject(/* private fields */);Implementations§
Source§impl JsonObject
impl JsonObject
pub fn property_value_or_null( &self, propertyKey__422: impl ToArcString, ) -> Option<JsonSyntaxTree>
pub fn property_value_or_bubble( &self, propertyKey__427: impl ToArcString, ) -> Result<JsonSyntaxTree>
pub fn produce(&self, p__430: JsonProducer)
pub fn new( properties__436: Map<Arc<String>, List<JsonSyntaxTree>>, ) -> JsonObject
pub fn properties(&self) -> Map<Arc<String>, List<JsonSyntaxTree>>
Trait Implementations§
Source§impl AnyValueTrait for JsonObject
impl AnyValueTrait for JsonObject
Source§impl AsAnyValue for JsonObject
impl AsAnyValue for JsonObject
fn as_any_value(&self) -> AnyValue
Source§impl Clone for JsonObject
impl Clone for JsonObject
Source§fn clone(&self) -> JsonObject
fn clone(&self) -> JsonObject
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 JsonSyntaxTreeTrait for JsonObject
impl JsonSyntaxTreeTrait for JsonObject
fn as_enum(&self) -> JsonSyntaxTreeEnum
fn clone_boxed(&self) -> JsonSyntaxTree
fn produce(&self, p__430: JsonProducer)
Auto Trait Implementations§
impl Freeze for JsonObject
impl !RefUnwindSafe for JsonObject
impl Send for JsonObject
impl Sync for JsonObject
impl Unpin for JsonObject
impl !UnwindSafe for JsonObject
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