Enum css_inline::error::InlineError [−][src]
pub enum InlineError {
MissingStyleSheet {
path: String,
},
IO(Error),
Network(Error),
ParseError(Cow<'static, str>),
}
Expand description
Inlining error
Variants
MissingStyleSheet
Fields
path: String
Path to the missing file.
Missing stylesheet file.
IO(Error)
Tuple Fields
0: Error
Input-output error. May happen during writing the resulting HTML.
Network(Error)
Tuple Fields
0: Error
Network-related problem. E.g. resource is not available.
ParseError(Cow<'static, str>)
Syntax errors or unsupported selectors.