Struct lightningcss::stylesheet::StyleAttribute
source · [−]pub struct StyleAttribute<'i> {
pub declarations: DeclarationBlock<'i>,
}
Expand description
An inline style attribute, as in HTML or SVG.
Style attributes can be parsed from a string, minified and transformed for a set of target browsers, and serialied to a string.
Example
use lightningcss::stylesheet::{
StyleAttribute, ParserOptions, MinifyOptions, PrinterOptions
};
// Parse a style sheet from a string.
let mut style = StyleAttribute::parse(
"color: yellow; font-family: 'Helvetica';",
ParserOptions::default()
).unwrap();
// Minify the stylesheet.
style.minify(MinifyOptions::default());
// Serialize it to a string.
let res = style.to_css(PrinterOptions::default()).unwrap();
assert_eq!(res.code, "color: #ff0; font-family: Helvetica");
Fields
declarations: DeclarationBlock<'i>
The declarations in the style attribute.
Implementations
sourceimpl<'i> StyleAttribute<'i>
impl<'i> StyleAttribute<'i>
sourcepub fn parse(
code: &'i str,
options: ParserOptions<'_, 'i>
) -> Result<StyleAttribute<'i>, Error<ParserError<'i>>>
pub fn parse(
code: &'i str,
options: ParserOptions<'_, 'i>
) -> Result<StyleAttribute<'i>, Error<ParserError<'i>>>
Parses a style attribute from a string.
sourcepub fn minify(&mut self, options: MinifyOptions)
pub fn minify(&mut self, options: MinifyOptions)
Minify and transform the style attribute for the provided browser targets.
sourcepub fn to_css(
&self,
options: PrinterOptions<'_>
) -> Result<ToCssResult, PrinterError>
pub fn to_css(
&self,
options: PrinterOptions<'_>
) -> Result<ToCssResult, PrinterError>
Serializes the style attribute to a CSS string.
Auto Trait Implementations
impl<'i> RefUnwindSafe for StyleAttribute<'i>
impl<'i> Send for StyleAttribute<'i>
impl<'i> Sync for StyleAttribute<'i>
impl<'i> Unpin for StyleAttribute<'i>
impl<'i> UnwindSafe for StyleAttribute<'i>
Blanket Implementations
impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
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.
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
fn deserialize(
&self,
deserializer: &mut D
) -> Result<With<T, W>, <D as Fallible>::Error>
fn deserialize(
&self,
deserializer: &mut D
) -> Result<With<T, W>, <D as Fallible>::Error>
Deserializes using the given deserializer