pub enum DatasetCondition {
Available,
Degraded,
Pending,
Missing,
}Available on crate feature
historical only.Expand description
The condition of a dataset on a day.
Variants§
Available
The data is available with no known issues.
Degraded
The data is available, but there may be missing data or other correctness issues.
Pending
The data is not yet available, but may be available soon.
Missing
The data is not available.
Implementations§
Trait Implementations§
Source§impl AsRef<str> for DatasetCondition
impl AsRef<str> for DatasetCondition
Source§impl Clone for DatasetCondition
impl Clone for DatasetCondition
Source§fn clone(&self) -> DatasetCondition
fn clone(&self) -> DatasetCondition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DatasetCondition
impl Debug for DatasetCondition
Source§impl<'de> Deserialize<'de> for DatasetCondition
impl<'de> Deserialize<'de> for DatasetCondition
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl FromStr for DatasetCondition
impl FromStr for DatasetCondition
Source§impl Hash for DatasetCondition
impl Hash for DatasetCondition
Source§impl PartialEq for DatasetCondition
impl PartialEq for DatasetCondition
Source§fn eq(&self, other: &DatasetCondition) -> bool
fn eq(&self, other: &DatasetCondition) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DatasetCondition
impl Eq for DatasetCondition
impl StructuralPartialEq for DatasetCondition
Auto Trait Implementations§
impl Freeze for DatasetCondition
impl RefUnwindSafe for DatasetCondition
impl Send for DatasetCondition
impl Sync for DatasetCondition
impl Unpin for DatasetCondition
impl UnsafeUnpin for DatasetCondition
impl UnwindSafe for DatasetCondition
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