Struct sixtyfps_build::CompilerConfiguration[][src]

pub struct CompilerConfiguration { /* fields omitted */ }

The structure for configuring aspects of the compilation of .60 markup files to Rust.

Implementations

impl CompilerConfiguration[src]

pub fn new() -> Self[src]

Creates a new default configuration.

pub fn with_include_paths(self, include_paths: Vec<PathBuf>) -> Self[src]

Create a new configuration that includes sets the include paths used for looking up .60 imports to the specified vector of paths.

pub fn with_style(self, style: String) -> Self[src]

Create a new configuration that selects the style to be used for widgets.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.