Struct messy_json::MessyJsonObject[][src]

pub struct MessyJsonObject(_);

Implementations

impl MessyJsonObject[src]

pub fn builder(&self, settings: MessyJsonSettings) -> MessyJsonObjectBuilder[src]

Create a builder object from the current object

Methods from Deref<Target = MessyJsonObjectInner>

pub fn properties(&self) -> &BTreeMap<KeyType, MessyJson>[src]

Get a reference to the MessyJsonObject’s properties

pub fn has_field(&self, key: &str) -> bool[src]

Get a reference to the MessyJsonObject’s properties

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

Check if the object is optional

Trait Implementations

impl Clone for MessyJsonObject[src]

impl Debug for MessyJsonObject[src]

impl Default for MessyJsonObject[src]

impl Deref for MessyJsonObject[src]

type Target = MessyJsonObjectInner

The resulting type after dereferencing.

impl Eq for MessyJsonObject[src]

impl From<&'_ MessyJsonObject> for MessyJsonInner[src]

impl From<MessyJsonObject> for MessyJsonInner[src]

impl From<MessyJsonObjectInner> for MessyJsonObject[src]

impl Hash for MessyJsonObject[src]

impl PartialEq<MessyJsonObject> for MessyJsonObject[src]

impl StructuralEq for MessyJsonObject[src]

impl StructuralPartialEq for MessyJsonObject[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.