Lines Matching defs:RenderOptions
210 pub(crate) struct RenderOptions { struct
212 pub(crate) output: PathBuf,
214 pub(crate) external_html: ExternalHtml,
217 pub(crate) id_map: IdMap,
221 pub(crate) playground_url: Option<String>,
224 pub(crate) module_sorting: ModuleSorting,
227 pub(crate) themes: Vec<StylePath>,
229 pub(crate) extension_css: Option<PathBuf>,
231 pub(crate) extern_html_root_urls: BTreeMap<String, String>,
233 pub(crate) extern_html_root_takes_precedence: bool,
236 pub(crate) default_settings: FxHashMap<String, String>,
238 pub(crate) resource_suffix: String,
241 pub(crate) enable_index_page: bool,
244 pub(crate) index_page: Option<PathBuf>,
247 pub(crate) static_root_path: Option<String>,
252 pub(crate) markdown_no_toc: bool,
254 pub(crate) markdown_css: Vec<String>,
257 pub(crate) markdown_playground_url: Option<String>,
259 pub(crate) document_private: bool,
261 pub(crate) document_hidden: bool,
263 pub(crate) generate_redirect_map: bool,
265 pub(crate) show_type_layout: bool,
268 pub(crate) unstable_features: rustc_feature::UnstableFeatures,
269 pub(crate) emit: Vec<EmitType>,
271 pub(crate) generate_link_to_definition: bool,
273 pub(crate) call_locations: AllCallLocations,
275 pub(crate) no_emit_shared: bool,
305 impl RenderOptions { impl
318 ) -> Result<(Options, RenderOptions), i32> { in from_matches() argument