Macro json::array [] [src]

macro_rules! array {
    ($dec: ident, $action: expr) => { ... };
}

Macro to support declarative decoding into Vec.

This only supports homogenous JSON arrays. To decode arrays with different element types use Decoder::array.