pub struct EmbeddedCanIUseDatabase { /* private fields */ }Expand description
The up-to-date version of the caniuse.com database shipped embedded in this crate.
Methods from Deref<Target = CanIUse>§
Sourcepub fn last_updated(&self) -> DateTime<Utc>
pub fn last_updated(&self) -> DateTime<Utc>
A timestamp of when this particular database was last updated.
Sourcepub fn known_agent_names(&self) -> AgentNameIterator<'_> ⓘ
pub fn known_agent_names(&self) -> AgentNameIterator<'_> ⓘ
An iterator over the AgentNames known in this caniuse.com database
Sourcepub fn known_statuses(&self) -> StatusIterator<'_> ⓘ
pub fn known_statuses(&self) -> StatusIterator<'_> ⓘ
An iterator over the AgentNames known in this caniuse.com database
Sourcepub fn known_parent_categories(&self) -> ParentCategoryIterator<'_> ⓘ
pub fn known_parent_categories(&self) -> ParentCategoryIterator<'_> ⓘ
An iterator over the AgentNames known in this caniuse.com database
Sourcepub fn known_feature_names(&self) -> FeatureNameIterator<'_> ⓘ
pub fn known_feature_names(&self) -> FeatureNameIterator<'_> ⓘ
An iterator over the AgentNames known in this caniuse.com database
Trait Implementations§
Source§impl Debug for EmbeddedCanIUseDatabase
impl Debug for EmbeddedCanIUseDatabase
Source§impl Deref for EmbeddedCanIUseDatabase
impl Deref for EmbeddedCanIUseDatabase
impl LazyStatic for EmbeddedCanIUseDatabase
Auto Trait Implementations§
impl Freeze for EmbeddedCanIUseDatabase
impl RefUnwindSafe for EmbeddedCanIUseDatabase
impl Send for EmbeddedCanIUseDatabase
impl Sync for EmbeddedCanIUseDatabase
impl Unpin for EmbeddedCanIUseDatabase
impl UnwindSafe for EmbeddedCanIUseDatabase
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