[−][src]Struct jsonc_parser::JsonObject
A JSON object.
Implementations
impl JsonObject
[src][−]
pub fn new(inner: HashMap<String, JsonValue>) -> JsonObject
[src][−]
Creates a new JsonObject.
pub fn take_inner(self) -> HashMap<String, JsonValue>
[src][−]
Drops the object returning the inner hash map.
pub fn len(&self) -> usize
[src][−]
Gets the number of properties.
pub fn get(&self, name: &str) -> Option<&JsonValue>
[src][−]
Gets a value in the object by its name.
pub fn get_string(&self, name: &str) -> Option<&String>
[src][−]
Gets a string property value from the object by name.
Returns None
when not a string or it doesn't exist.
pub fn get_number(&self, name: &str) -> Option<&String>
[src][−]
Gets a number property value from the object by name.
Returns None
when not a number or it doesn't exist.
pub fn get_boolean(&self, name: &str) -> Option<bool>
[src][−]
Gets a boolean property value from the object by name.
Returns None
when not a boolean or it doesn't exist.
pub fn get_object(&self, name: &str) -> Option<&JsonObject>
[src][−]
Gets an object property value from the object by name.
Returns None
when not an object or it doesn't exist.
pub fn get_array(&self, name: &str) -> Option<&JsonArray>
[src][−]
Gets an array property value from the object by name.
Returns None
when not an array or it doesn't exist.
pub fn take(&mut self, name: &str) -> Option<JsonValue>
[src][−]
Takes a value from the object by name.
Returns None
when it doesn't exist.
pub fn take_string(&mut self, name: &str) -> Option<String>
[src][−]
Takes a string property value from the object by name.
Returns None
when not a string or it doesn't exist.
pub fn take_number(&mut self, name: &str) -> Option<String>
[src][−]
Takes a number property value from the object by name.
Returns None
when not a number or it doesn't exist.
pub fn take_boolean(&mut self, name: &str) -> Option<bool>
[src][−]
Takes a boolean property value from the object by name.
Returns None
when not a boolean or it doesn't exist.
pub fn take_object(&mut self, name: &str) -> Option<JsonObject>
[src][−]
Takes an object property value from the object by name.
Returns None
when not an object or it doesn't exist.
pub fn take_array(&mut self, name: &str) -> Option<JsonArray>
[src][−]
Takes an array property value from the object by name.
Returns None
when not an array or it doesn't exist.
Trait Implementations
impl Clone for JsonObject
[src][+]
impl Debug for JsonObject
[src][+]
impl From<HashMap<String, JsonValue, RandomState>> for JsonObject
[src][+]
impl IntoIterator for JsonObject
[src][+]
impl PartialEq<JsonObject> for JsonObject
[src][+]
impl StructuralPartialEq for JsonObject
[src]
Auto Trait Implementations
impl RefUnwindSafe for JsonObject
impl Send for JsonObject
impl Sync for JsonObject
impl Unpin for JsonObject
impl UnwindSafe for JsonObject
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<I> IntoIterator for I where
I: Iterator,
[src][+]
I: Iterator,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,