pub struct StyleAttribute<'i> {
pub declarations: DeclarationBlock<'i>,
/* private fields */
}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§
Source§impl<'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.
Trait Implementations§
Source§impl<'any, 'i> IntoOwned<'any> for StyleAttribute<'i>
impl<'any, 'i> IntoOwned<'any> for StyleAttribute<'i>
Source§fn into_owned(self) -> Self::Owned
fn into_owned(self) -> Self::Owned
Consumes the value and returns an owned clone.
Source§type Owned = StyleAttribute<'any>
type Owned = StyleAttribute<'any>
A variant of
Self with a new lifetime.Source§impl<'i, __T: Visit<'i, __T, __V>, __V: ?Sized + Visitor<'i, __T>> Visit<'i, __T, __V> for StyleAttribute<'i>
impl<'i, __T: Visit<'i, __T, __V>, __V: ?Sized + Visitor<'i, __T>> Visit<'i, __T, __V> for StyleAttribute<'i>
Source§const CHILD_TYPES: VisitTypes
const CHILD_TYPES: VisitTypes
Available on crate feature
visitor only.The types of values contained within this value and its children.
This is used to skip branches that don’t have any values requested
by the Visitor.
Auto Trait Implementations§
impl<'i> Freeze for StyleAttribute<'i>
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§
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