[][src]Enum sj::Value

pub enum Value {
    String(String),
    Number(Number),
    Boolean(bool),
    Null,
    Object(BTreeMap<String, Value>),
    Array(Vec<Value>),
}

A value

Notes

  • To format as compressed JSON string, you can use to_string().

  • To format with default tab width (4), you can use # (via Formatter):

    format!(
        "{:#}",
        sj::parse(&mut &br#"["test"]"#[..]).unwrap(),
    );
  • You can set tab width (required) and tab level (optional):

    format!(
        "{:width$.level$}",
        sj::parse(&mut &br#"["test"]"#[..]).unwrap(),
        width=4, level=0,
    );

Variants

String(String)
Number(Number)
Boolean(bool)
Null
Array(Vec<Value>)

Trait Implementations

impl From<String> for Value[src]

impl From<Number> for Value[src]

impl From<bool> for Value[src]

impl From<BTreeMap<String, Value>> for Value[src]

impl From<Vec<Value>> for Value[src]

impl Debug for Value[src]

impl Display for Value[src]

Auto Trait Implementations

impl Unpin for Value

impl Send for Value

impl Sync for Value

impl UnwindSafe for Value

impl RefUnwindSafe for Value

Blanket Implementations

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

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

type Error = !

The type returned in the event of a conversion error.

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

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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