pub struct StringOptionsBuilder { /* private fields */ }Implementations§
Source§impl StringOptionsBuilder
impl StringOptionsBuilder
pub fn new() -> Self
pub fn build(self) -> StringOptions
pub fn input_sass_importer(self, arg: impl Into<SassImporter>) -> Self
pub fn input_importer<I: 'static + Importer>(self, arg: I) -> Self
pub fn input_file_importer<I: 'static + FileImporter>(self, arg: I) -> Self
pub fn syntax(self, arg: impl Into<Syntax>) -> Self
pub fn url(self, arg: impl Into<Url>) -> Self
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 StringOptionsBuilder
impl Debug for StringOptionsBuilder
Source§impl Default for StringOptionsBuilder
impl Default for StringOptionsBuilder
Source§fn default() -> StringOptionsBuilder
fn default() -> StringOptionsBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StringOptionsBuilder
impl !RefUnwindSafe for StringOptionsBuilder
impl Send for StringOptionsBuilder
impl Sync for StringOptionsBuilder
impl Unpin for StringOptionsBuilder
impl !UnwindSafe for StringOptionsBuilder
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