css_feature_data 0.0.18-canary.58acc58261

Browser compatibility data and feature detection for CSS properties and values.
Documentation
1
2
3
4
5
6
7
8
9
use chrono::NaiveDate;

#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum BaselineStatus {
	High { since: NaiveDate, low_since: NaiveDate },
	Low(NaiveDate),
	False,
	Unknown,
}