pub struct UnparsedCssRuleBlock<'a> {
pub path: CssPath,
pub declarations: HashMap<&'a str, (&'a str, (ErrorLocation, ErrorLocation))>,
}
Fields§
§path: CssPath
The css path (full selector) of the style ruleset
declarations: HashMap<&'a str, (&'a str, (ErrorLocation, ErrorLocation))>
"justify-content" => "center"
Trait Implementations§
Source§impl<'a> Clone for UnparsedCssRuleBlock<'a>
impl<'a> Clone for UnparsedCssRuleBlock<'a>
Source§fn clone(&self) -> UnparsedCssRuleBlock<'a>
fn clone(&self) -> UnparsedCssRuleBlock<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for UnparsedCssRuleBlock<'a>
impl<'a> Debug for UnparsedCssRuleBlock<'a>
Source§impl<'a> PartialEq for UnparsedCssRuleBlock<'a>
impl<'a> PartialEq for UnparsedCssRuleBlock<'a>
impl<'a> StructuralPartialEq for UnparsedCssRuleBlock<'a>
Auto Trait Implementations§
impl<'a> Freeze for UnparsedCssRuleBlock<'a>
impl<'a> RefUnwindSafe for UnparsedCssRuleBlock<'a>
impl<'a> Send for UnparsedCssRuleBlock<'a>
impl<'a> Sync for UnparsedCssRuleBlock<'a>
impl<'a> Unpin for UnparsedCssRuleBlock<'a>
impl<'a> UnwindSafe for UnparsedCssRuleBlock<'a>
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