macro_rules! row {
() => { ... };
($(($key:expr, $val:expr)),+ $(,)?) => { ... };
}Expand description
Macro for constructing a Row with key-value pairs.
§Examples
use supabase_client_core::row;
let row = row![("name", "Auckland"), ("country_id", 554)];