macro_rules! doc_value {
({ $($key:tt : $value:tt),* $(,)? }) => { ... };
([ $($value:tt),* $(,)? ]) => { ... };
($value:expr) => { ... };
}Expand description
Helper macro to convert values for the doc! macro. Handles nested documents, arrays, and expressions.