Path: blob/main/crates/wasi-http/src/p3/bindings.rs
1692 views
//! Raw bindings to the `wasi:http` package.12#[expect(missing_docs, reason = "generated code")]3mod generated {4wasmtime::component::bindgen!({5path: "src/p3/wit",6world: "wasi:http/proxy",7imports: {8"wasi:http/handler/[async]handle": async | store | trappable | tracing,9"wasi:http/types/[static]request.new": async | store | trappable | tracing,10"wasi:http/types/[static]response.new": async | store | trappable | tracing,11default: trappable | tracing,12},13exports: { default: async | store },14});15}1617pub use self::generated::wasi::*;1819/// Raw bindings to the `wasi:http/proxy` exports.20pub use self::generated::exports;2122/// Bindings to the `wasi:http/proxy` world.23pub use self::generated::{Proxy, ProxyIndices, ProxyPre};242526