Trait jsonway::array_serializer::ArraySerializer [] [src]

pub trait ArraySerializer {
    fn build(&self, &mut ArrayBuilder);

    fn root(&self) -> Option<&str> { ... }
    fn meta(&self) -> Option<ObjectBuilder> { ... }
    fn serialize(&mut self, include_root: bool) -> Value { ... }
}

Required Methods

fn build(&self, &mut ArrayBuilder)

Provided Methods

fn root(&self) -> Option<&str>

fn meta(&self) -> Option<ObjectBuilder>

fn serialize(&mut self, include_root: bool) -> Value

Implementors