vercel_runtime_router 1.1.7

This crate is deprecated. Use https://vercel.com/docs/functions/runtimes/rust for new projects.
Documentation
---
source: crates/vercel_runtime_router/src/lib.rs
expression: "router.call(\"api/foo/[d]/bar/baz/[f]\")"
---
Some(
    Route {
        kind: Dynamic,
        module_file: "api/foo/[d]/bar/baz/[f].rs",
        module_name: Ident(
            api_foo__d__bar_baz__f_,
        ),
        path: "api/foo/[d]/bar/baz/[f]",
        segments: Some(
            [
                "api",
                "foo",
                "[d]",
                "bar",
                "baz",
                "[f]",
            ],
        ),
    },
)