pub enum SamplingAdequacy {
Adequate,
Marginal,
NotAssessed,
}Expand description
Advisory assessment of whether the recorded samples provide enough observations per oscillation period for a trustworthy extrema measurement.
Variants§
Adequate
At least the documented minimum number of samples per measured oscillation period.
Marginal
Fewer than the documented minimum number of samples per measured oscillation period.
NotAssessed
No finite, positive oscillation period was available for this assessment.
Trait Implementations§
Source§impl Clone for SamplingAdequacy
impl Clone for SamplingAdequacy
Source§fn clone(&self) -> SamplingAdequacy
fn clone(&self) -> SamplingAdequacy
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 ComposeSchema for SamplingAdequacy
impl ComposeSchema for SamplingAdequacy
impl Copy for SamplingAdequacy
Source§impl Debug for SamplingAdequacy
impl Debug for SamplingAdequacy
Source§impl Default for SamplingAdequacy
impl Default for SamplingAdequacy
Source§fn default() -> SamplingAdequacy
fn default() -> SamplingAdequacy
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SamplingAdequacy
impl<'de> Deserialize<'de> for SamplingAdequacy
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SamplingAdequacy
Source§impl Hash for SamplingAdequacy
impl Hash for SamplingAdequacy
Source§impl PartialEq for SamplingAdequacy
impl PartialEq for SamplingAdequacy
Source§fn eq(&self, other: &SamplingAdequacy) -> bool
fn eq(&self, other: &SamplingAdequacy) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SamplingAdequacy
impl Serialize for SamplingAdequacy
impl StructuralPartialEq for SamplingAdequacy
Auto Trait Implementations§
impl Freeze for SamplingAdequacy
impl RefUnwindSafe for SamplingAdequacy
impl Send for SamplingAdequacy
impl Sync for SamplingAdequacy
impl Unpin for SamplingAdequacy
impl UnsafeUnpin for SamplingAdequacy
impl UnwindSafe for SamplingAdequacy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more