Enum css_compare::Error 
source · pub enum Error<'a> {
    Parser(Error<ParserError<'a>>),
    MissingStyleProperties {
        path: String,
        rules: Vec<String>,
    },
    UnexpectedProperties {
        path: String,
        rules: Vec<String>,
    },
    MismatchFontFace {
        path: String,
        expected: String,
        generated: String,
    },
    MismatchRules {
        path: String,
        expected: String,
        generated: String,
    },
    MismatchImports {
        path: String,
        expected: String,
        generated: String,
    },
    MissingRules {
        path: String,
        rules: Vec<String>,
    },
    UnexpectedRules {
        path: String,
        rules: Vec<String>,
    },
}Variants§
Parser(Error<ParserError<'a>>)
MissingStyleProperties
UnexpectedProperties
MismatchFontFace
MismatchRules
MismatchImports
MissingRules
UnexpectedRules
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Error<'a>
impl<'a> Send for Error<'a>
impl<'a> Sync for Error<'a>
impl<'a> Unpin for Error<'a>
impl<'a> UnwindSafe for Error<'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