pub struct PrinterOptions<'a> {
pub minify: bool,
pub source_map: Option<&'a mut SourceMap>,
pub project_root: Option<&'a str>,
pub targets: Targets,
pub analyze_dependencies: Option<DependencyOptions>,
pub pseudo_classes: Option<PseudoClasses<'a>>,
}
Expand description
Options that control how CSS is serialized to a string.
Fields§
§minify: bool
Whether to minify the CSS, i.e. remove white space.
source_map: Option<&'a mut SourceMap>
Available on crate feature
sourcemap
only.An optional reference to a source map to write mappings into.
project_root: Option<&'a str>
An optional project root path, used to generate relative paths for sources used in CSS module hashes.
targets: Targets
Targets to output the CSS for.
analyze_dependencies: Option<DependencyOptions>
Whether to analyze dependencies (i.e. @import
and url()
).
If true, the dependencies are returned as part of the
ToCssResult.
When enabled, @import
and url()
dependencies
are replaced with hashed placeholders that can be replaced with the final
urls later (after bundling).
pseudo_classes: Option<PseudoClasses<'a>>
A mapping of pseudo classes to replace with class names that can be applied from JavaScript. Useful for polyfills, for example.
Trait Implementations§
Source§impl<'a> Default for PrinterOptions<'a>
impl<'a> Default for PrinterOptions<'a>
Source§fn default() -> PrinterOptions<'a>
fn default() -> PrinterOptions<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for PrinterOptions<'a>
impl<'a> RefUnwindSafe for PrinterOptions<'a>
impl<'a> Send for PrinterOptions<'a>
impl<'a> Sync for PrinterOptions<'a>
impl<'a> Unpin for PrinterOptions<'a>
impl<'a> !UnwindSafe for PrinterOptions<'a>
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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
Source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more