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> Freeze for Error<'a>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more