pub struct CssStyle {
pub style_sheet_id: Option<StyleSheetId>,
pub css_properties: Vec<CssProperty>,
pub shorthand_entries: Vec<ShorthandEntry>,
pub css_text: Option<String>,
pub range: Option<SourceRange>,
}Fields§
§style_sheet_id: Option<StyleSheetId>§css_properties: Vec<CssProperty>§shorthand_entries: Vec<ShorthandEntry>§css_text: Option<String>§range: Option<SourceRange>Trait Implementations§
Source§impl<'de> Deserialize<'de> for CssStyle
impl<'de> Deserialize<'de> for CssStyle
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for CssStyle
Auto Trait Implementations§
impl Freeze for CssStyle
impl RefUnwindSafe for CssStyle
impl Send for CssStyle
impl Sync for CssStyle
impl Unpin for CssStyle
impl UnwindSafe for CssStyle
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