macro_rules! buffer_mut {
() => { ... };
($start:tt .. $end:tt) => { ... };
($start:tt ..= $end:tt) => { ... };
($elem:expr; $n:expr) => { ... };
($($x:expr),+ $(,)?) => { ... };
}Expand description
A macro for constructing buffers akin to vec![..].