Enum rustc_serialize::json::Json [−][src]
pub enum Json {
I64(i64),
U64(u64),
F64(f64),
String(String),
Boolean(bool),
Array(Array),
Object(Object),
Null,
}
Expand description
Represents a json value
Variants
I64(i64)
Tuple Fields of I64
0: i64
U64(u64)
Tuple Fields of U64
0: u64
F64(f64)
Tuple Fields of F64
0: f64
String(String)
Tuple Fields of String
0: String
Boolean(bool)
Tuple Fields of Boolean
0: bool
Array(Array)
Tuple Fields of Array
0: Array
Object(Object)
Tuple Fields of Object
0: Object
Implementations
Borrow this json object as a pretty object to generate a pretty
representation for it via Display
.
If the Json value is an Object, returns the value associated with the provided key. Otherwise, returns None.
If the Json value is an Object, deletes the value associated with the provided key from the Object and returns it. Otherwise, returns None.
Attempts to get a nested Json Object for each key in keys
.
If any key is found not to exist, find_path
will return None
.
Otherwise, it will return the Json value associated with the final key.
If the Json value is an Object, performs a depth-first search until
a value associated with the provided key is found. If no value is found
or the Json value is not an Object, returns None
.
If the Json value is an Object
, returns the associated BTreeMap
;
returns None
otherwise.
If the Json value is an Array
, returns the associated vector;
returns None
otherwise.
If the Json value is a String
, returns the associated str
;
returns None
otherwise.
If the Json value is a number, returns or cast it to an i64
;
returns None
otherwise.
If the Json value is a number, returns or cast it to a u64
;
returns None
otherwise.
If the Json value is a number, returns or cast it to a f64
;
returns None
otherwise.
Returns true
if the Json value is a Boolean
.
If the Json value is a Boolean
, returns the associated bool
;
returns None
otherwise.
Trait Implementations
type Err = BuilderError
type Err = BuilderError
The associated error which can be returned from parsing.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for Json
impl UnwindSafe for Json
Blanket Implementations
Mutably borrows from an owned value. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 32 bytes
Size for each variant:
I64
: 15 bytesU64
: 15 bytesF64
: 15 bytesString
: 31 bytesBoolean
: 1 byteArray
: 31 bytesObject
: 31 bytesNull
: 0 bytes