1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// This file is part of caniuse-serde. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/caniuse-serde/master/COPYRIGHT. No part of predicator, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
// Copyright © 2017 The developers of caniuse-serde. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/caniuse-serde/master/COPYRIGHT.
/// Details about a particular version, of which only the release_date is particularly useful.
/// The era is a relative value which can change with releases of the caniuse.com database, and the global_usage can differ to that available in `RegionalUsage::WorldWide`.
#[derive(Debug, Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]
pub struct VersionDetail
{
global_usage: UsagePercentage,
release_date: Option<DateTime<Utc>>,
era: i64,
prefix_override: Option<Prefix>,
}
impl VersionDetail
{
/// A global usage of this version; one of three measurements included in the caniuse.com database.
/// It is recommended to use that in the `RegionalUsage::WorldWide` database instead as RegionalUsage data has greater consistency.
#[inline(always)]
pub fn global_usage(&self) -> UsagePercentage
{
self.global_usage
}
/// A timestamp of when this particular version was released.
/// It is likely that the hours, minutes and seconds represent false precision.
/// If the release_date is None, then ordinarily this version has not yet been released and `self.era()` should be greater than zero (0).
#[inline(always)]
pub fn release_date(&self) -> Option<DateTime<Utc>>
{
self.release_date
}
/// Eras are the caniuse.com database's attempt to align different browsers by version.
/// Negative values are for not current versions.
/// Zero is for the current version.
/// The era is a relative value which which can change with releases of the caniuse.com database.
#[inline(always)]
pub fn era(&self) -> i64
{
self.era
}
/// Override of prefix; only specified for Opera
#[inline(always)]
pub fn prefix_override(&self) -> Option<&Prefix>
{
self.prefix_override.as_ref()
}
}