usestd::path::PathBuf;#[derive(Clone)]pubstructOptions{/// The document root path to load CGI scripts and other assets from.
pubdocument_root: PathBuf,
/// The path to CGI scripts; may be relative or absolute.
/// Relative paths are resolved from the document root.
pubcgi_bin: PathBuf,
/// The hostname of the local TCP interface for the server to listen on.
pubhostname: String,
/// The TCP port for the server to listen on.
pubport:u16,
/// Enable an in-memory cache for compiled WebAssembly modules.
pubwasm_cache:bool,
/// Pre-load compiled WebAssembly modules into the in-memory cache.
pubpreload_wasm:bool,
}