pub struct CompilerConfiguration {
    pub embed_resources: EmbedResourcesKind,
    pub include_paths: Vec<PathBuf>,
    pub style: Option<String>,
    pub open_import_fallback: Option<Rc<dyn Fn(String) -> Pin<Box<dyn Future<Output = Option<Result<String>>>>>>>,
    pub inline_all_elements: bool,
    pub scale_factor: f64,
    pub accessibility: bool,
}
Expand description

CompilationConfiguration allows configuring different aspects of the compiler.

Fields§

§embed_resources: EmbedResourcesKind

Indicate whether to embed resources such as images in the generated output or whether to retain references to the resources on the file system.

§include_paths: Vec<PathBuf>

The compiler will look in these paths for components used in the file to compile.

§style: Option<String>

the name of the style. (eg: “native”)

§open_import_fallback: Option<Rc<dyn Fn(String) -> Pin<Box<dyn Future<Output = Option<Result<String>>>>>>>

Callback to load import files which is called if the file could not be found

The callback should open the file specified by the given file name and return an future that provides the text content of the file as output.

§inline_all_elements: bool

Run the pass that inlines all the elements.

This may help optimization to optimize the runtime resources usages, but at the cost of much more generated code and binary size.

§scale_factor: f64

Compile time scale factor to apply to embedded resources such as images and glyphs.

§accessibility: bool

expose the accessible role and properties

Implementations§

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.