macro_rules! array {
($dec: ident, $action: expr) => { ... };
}Expand description
Macro to support declarative decoding into Vec.
This only supports homogenous JSON arrays. To decode
arrays with different element types use Decoder::array.
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.