[][src]Struct validators::json_object::JSONObject

pub struct JSONObject { /* fields omitted */ }

Implementations

impl JSONObject[src]

pub fn get_json_value(&self) -> &Value[src]

pub fn get_full_json_object(&self) -> &str[src]

pub fn into_map(self) -> Map<String, Value>[src]

pub fn into_value(self) -> Value[src]

pub fn into_string(self) -> String[src]

impl JSONObject[src]

pub fn from_string(full_json_object: String) -> Result<Self, JSONObjectError>[src]

pub fn from_str(full_json_object: &str) -> Result<Self, JSONObjectError>[src]

Methods from Deref<Target = Map<String, Value>>

pub fn clear(&mut self)[src]

Clears the map, removing all values.

pub fn get<Q>(&self, key: &Q) -> Option<&Value> where
    Q: Ord + Eq + Hash + ?Sized,
    String: Borrow<Q>, 
[src]

Returns a reference to the value corresponding to the key.

The key may be any borrowed form of the map's key type, but the ordering on the borrowed form must match the ordering on the key type.

pub fn contains_key<Q>(&self, key: &Q) -> bool where
    Q: Ord + Eq + Hash + ?Sized,
    String: Borrow<Q>, 
[src]

Returns true if the map contains a value for the specified key.

The key may be any borrowed form of the map's key type, but the ordering on the borrowed form must match the ordering on the key type.

pub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut Value> where
    Q: Ord + Eq + Hash + ?Sized,
    String: Borrow<Q>, 
[src]

Returns a mutable reference to the value corresponding to the key.

The key may be any borrowed form of the map's key type, but the ordering on the borrowed form must match the ordering on the key type.

pub fn insert(&mut self, k: String, v: Value) -> Option<Value>[src]

Inserts a key-value pair into the map.

If the map did not have this key present, None is returned.

If the map did have this key present, the value is updated, and the old value is returned.

pub fn remove<Q>(&mut self, key: &Q) -> Option<Value> where
    Q: Ord + Eq + Hash + ?Sized,
    String: Borrow<Q>, 
[src]

Removes a key from the map, returning the value at the key if the key was previously in the map.

The key may be any borrowed form of the map's key type, but the ordering on the borrowed form must match the ordering on the key type.

pub fn append(&mut self, other: &mut Map<String, Value>)[src]

Moves all elements from other into Self, leaving other empty.

pub fn entry<S>(&mut self, key: S) -> Entry where
    S: Into<String>, 
[src]

Gets the given key's corresponding entry in the map for in-place manipulation.

pub fn len(&self) -> usize[src]

Returns the number of elements in the map.

pub fn is_empty(&self) -> bool[src]

Returns true if the map contains no elements.

pub fn iter(&self) -> Iter[src]

Gets an iterator over the entries of the map.

pub fn iter_mut(&mut self) -> IterMut[src]

Gets a mutable iterator over the entries of the map.

pub fn keys(&self) -> Keys[src]

Gets an iterator over the keys of the map.

pub fn values(&self) -> Values[src]

Gets an iterator over the values of the map.

pub fn values_mut(&mut self) -> ValuesMut[src]

Gets an iterator over mutable values of the map.

Trait Implementations

impl Clone for JSONObject[src]

impl Debug for JSONObject[src]

impl Deref for JSONObject[src]

type Target = Map<String, Value>

The resulting type after dereferencing.

impl DerefMut for JSONObject[src]

impl<'de> Deserialize<'de> for JSONObject[src]

impl Display for JSONObject[src]

impl Eq for JSONObject[src]

impl<'a> FromFormValue<'a> for JSONObject[src]

type Error = JSONObjectError

The associated error which can be returned from parsing. It is a good idea to have the return type be or contain an &'v str so that the unparseable string can be examined after a bad parse. Read more

impl<'a> FromParam<'a> for JSONObject[src]

type Error = JSONObjectError

The associated error to be returned if parsing/validation fails.

impl FromStr for JSONObject[src]

type Err = JSONObjectError

The associated error which can be returned from parsing.

impl Hash for JSONObject[src]

impl PartialEq<JSONObject> for JSONObject[src]

impl Serialize for JSONObject[src]

impl Validated for JSONObject[src]

impl ValidatedWrapper for JSONObject[src]

type Error = JSONObjectError

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, I> AsResult<T, I> for T where
    I: Input, 

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoCollection<T> for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,