mizchi/crater-css/diagnostics does not have a README file
pub(all) struct Diagnostic {
property : String
value : String
level : SupportLevel
severity : Severity
selector : String
}impl Show for Diagnosticpub(all) struct DiagnosticSummary {
total_properties : Int
supported : Int
partial : Int
unsupported_layout : Int
unsupported_visual : Int
deprecated : Int
unknown : Int
}impl Show for DiagnosticSummarypub struct DiagnosticsCollector {
diagnostics : Array[Diagnostic]
seen : Map[String, Bool]
supported_count : Int
partial_count : Int
unsupported_layout_count : Int
unsupported_visual_count : Int
deprecated_count : Int
unknown_count : Int
}fn DiagnosticsCollector::add_property(self : DiagnosticsCollector, property : String, value : String, selector : String) -> Unitfn DiagnosticsCollector::get_by_severity(self : DiagnosticsCollector, severity : Severity) -> Array[Diagnostic]pub(all) enum Severity {
Info
Warning
Error
}pub(all) enum SupportLevel {
Supported
Partial(String)
UnsupportedLayout
UnsupportedVisual
Deprecated(String)
Unknown
}impl Show for SupportLevelCSS parser, selector, cascade, and computed style engine for crater
Dependencies