Struct jsonc_parser::JsonObject [−][src]
pub struct JsonObject<'a>(_);
Expand description
A JSON object.
Implementations
Drops the object returning the inner hash map.
Gets a string property value from the object by name.
Returns None
when not a string or it doesn’t exist.
Gets a number property value from the object by name.
Returns None
when not a number or it doesn’t exist.
Gets a boolean property value from the object by name.
Returns None
when not a boolean or it doesn’t exist.
Gets an object property value from the object by name.
Returns None
when not an object or it doesn’t exist.
Gets an array property value from the object by name.
Returns None
when not an array or it doesn’t exist.
Takes a value from the object by name.
Returns None
when it doesn’t exist.
Takes a string property value from the object by name.
Returns None
when not a string or it doesn’t exist.
Takes a number property value from the object by name.
Returns None
when not a number or it doesn’t exist.
Takes a boolean property value from the object by name.
Returns None
when not a boolean or it doesn’t exist.
Takes an object property value from the object by name.
Returns None
when not an object or it doesn’t exist.
Takes an array property value from the object by name.
Returns None
when not an array or it doesn’t exist.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl<'a> RefUnwindSafe for JsonObject<'a>
impl<'a> Send for JsonObject<'a>
impl<'a> Sync for JsonObject<'a>
impl<'a> Unpin for JsonObject<'a>
impl<'a> UnwindSafe for JsonObject<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more