Macro serde_big_array::big_array
source · macro_rules! big_array {
($name:ident; $($len:expr),+ $(,)?) => { ... };
($name:ident; + $($len:expr),* $(,)?) => { ... };
($name:ident;) => { ... };
}
👎Deprecated: deprecated in favour of the BigArray trait
Expand description
Big array macro
The macro exists for legacy reasons, to make moving to the pure const-generics
mode easier.
Instead of this macro, please use the BigArray
trait directly.