pub struct UnparsedCssRuleBlockOwned {
pub path: CssPath,
pub declarations: BTreeMap<String, (String, (ErrorLocation, ErrorLocation))>,
pub conditions: Vec<DynamicSelector>,
}Expand description
Owned version of UnparsedCssRuleBlock, with BTreeMap of Strings.
Fields§
§path: CssPath§declarations: BTreeMap<String, (String, (ErrorLocation, ErrorLocation))>§conditions: Vec<DynamicSelector>Implementations§
Trait Implementations§
Source§impl Clone for UnparsedCssRuleBlockOwned
impl Clone for UnparsedCssRuleBlockOwned
Source§fn clone(&self) -> UnparsedCssRuleBlockOwned
fn clone(&self) -> UnparsedCssRuleBlockOwned
Returns a duplicate 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 Debug for UnparsedCssRuleBlockOwned
impl Debug for UnparsedCssRuleBlockOwned
impl StructuralPartialEq for UnparsedCssRuleBlockOwned
Auto Trait Implementations§
impl Freeze for UnparsedCssRuleBlockOwned
impl RefUnwindSafe for UnparsedCssRuleBlockOwned
impl Send for UnparsedCssRuleBlockOwned
impl Sync for UnparsedCssRuleBlockOwned
impl Unpin for UnparsedCssRuleBlockOwned
impl UnwindSafe for UnparsedCssRuleBlockOwned
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