[][src]Macro urlqstring::object_internal

macro_rules! object_internal {
    (@array [$($elems:expr,)*]) => { ... };
    (@array [$($elems:expr),*]) => { ... };
    (@object $object:ident () () ()) => { ... };
    (@object $object:ident [$($key:tt)+] ($value:expr) , $($rest:tt)*) => { ... };
    (@object $object:ident [$($key:tt)+] ($value:expr)) => { ... };
    (@object $object:ident ($($key:tt)+) (: true $($rest:tt)*) $copy:tt) => { ... };
    (@object $object:ident ($($key:tt)+) (: false $($rest:tt)*) $copy:tt) => { ... };
    (@object $object:ident ($($key:tt)+) (: $value:expr, $($rest:tt)*) $copy:tt) => { ... };
    (@object $object:ident ($($key:tt)+) (: $value:expr) $copy:tt) => { ... };
    (@object $object:ident () (: $(rest:tt)*) ($colon:tt $($copy:tt)*)) => { ... };
    (@object $object:ident () (($key:expr) : $($rest:tt)*) $copy:tt) => { ... };
    (@object $object:ident ($($key:tt)*) ($tt:tt $($rest:tt)*) $copy:tt) => { ... };
    ({ $($tt:tt)+ }) => { ... };
}