pub struct OptionsBuilder { /* private fields */ }Implementations§
Source§impl OptionsBuilder
impl OptionsBuilder
pub fn new() -> Self
pub fn build(self) -> Options
pub fn alert_ascii(self, arg: impl Into<bool>) -> Self
pub fn alert_color(self, arg: impl Into<bool>) -> Self
pub fn load_paths(self, arg: &[impl AsRef<Path>]) -> Self
pub fn load_path(self, arg: impl AsRef<Path>) -> Self
pub fn quiet_deps(self, arg: impl Into<bool>) -> Self
pub fn source_map(self, arg: impl Into<bool>) -> Self
pub fn source_map_include_sources(self, arg: impl Into<bool>) -> Self
pub fn style(self, arg: impl Into<OutputStyle>) -> Self
pub fn verbose(self, arg: impl Into<bool>) -> Self
pub fn charset(self, arg: impl Into<bool>) -> Self
pub fn logger<L: 'static + Logger>(self, arg: L) -> Self
pub fn sass_importer(self, arg: impl Into<SassImporter>) -> Self
pub fn sass_importers( self, arg: impl IntoIterator<Item = impl Into<SassImporter>>, ) -> Self
pub fn importer<I: 'static + Importer>(self, arg: I) -> Self
pub fn file_importer<I: 'static + FileImporter>(self, arg: I) -> Self
Trait Implementations§
Source§impl Debug for OptionsBuilder
impl Debug for OptionsBuilder
Source§impl Default for OptionsBuilder
impl Default for OptionsBuilder
Source§fn default() -> OptionsBuilder
fn default() -> OptionsBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OptionsBuilder
impl !RefUnwindSafe for OptionsBuilder
impl Send for OptionsBuilder
impl Sync for OptionsBuilder
impl Unpin for OptionsBuilder
impl !UnwindSafe for OptionsBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more