Struct serde_json::builder::ArrayBuilder
[−]
[src]
pub struct ArrayBuilder { /* fields omitted */ }
This structure provides a simple interface for constructing a JSON array.
Methods
impl ArrayBuilder
[src]
fn new() -> ArrayBuilder
Construct an ObjectBuilder
.
fn build(self) -> Value
Return the constructed Value
.
fn push<T: Serialize>(self, v: T) -> ArrayBuilder
Insert a value into the array.
fn push_array<F>(self, f: F) -> ArrayBuilder where F: FnOnce(ArrayBuilder) -> ArrayBuilder
Creates and passes an ArrayBuilder
into a closure, then inserts the resulting array into this array.
fn push_object<F>(self, f: F) -> ArrayBuilder where F: FnOnce(ObjectBuilder) -> ObjectBuilder
Creates and passes an ArrayBuilder
into a closure, then inserts the resulting object into this array.
Trait Implementations
impl Default for ArrayBuilder
[src]
fn default() -> ArrayBuilder
Returns the "default value" for a type. Read more