pub struct StyleSheetNode<'s> {
pub loc: Loc,
pub statements: Vec<StatementNode<'s>>,
}
Expand description
Represents a stylesheet
Fields§
§loc: Loc
Location information in the source file
statements: Vec<StatementNode<'s>>
All statements of the stylesheet
Trait Implementations§
Source§impl<'s> Debug for StyleSheetNode<'s>
impl<'s> Debug for StyleSheetNode<'s>
Source§impl<'s> Default for StyleSheetNode<'s>
impl<'s> Default for StyleSheetNode<'s>
Source§fn default() -> StyleSheetNode<'s>
fn default() -> StyleSheetNode<'s>
Returns the “default value” for a type. Read more
Source§impl<'s> PartialEq for StyleSheetNode<'s>
impl<'s> PartialEq for StyleSheetNode<'s>
Source§impl<'s> Serialize for StyleSheetNode<'s>
impl<'s> Serialize for StyleSheetNode<'s>
impl<'s> StructuralPartialEq for StyleSheetNode<'s>
Auto Trait Implementations§
impl<'s> Freeze for StyleSheetNode<'s>
impl<'s> !RefUnwindSafe for StyleSheetNode<'s>
impl<'s> !Send for StyleSheetNode<'s>
impl<'s> !Sync for StyleSheetNode<'s>
impl<'s> Unpin for StyleSheetNode<'s>
impl<'s> !UnwindSafe for StyleSheetNode<'s>
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