Enum light_curve_feature::NyquistFreq
source · #[non_exhaustive]
pub enum NyquistFreq {
Average(AverageNyquistFreq),
Median(MedianNyquistFreq),
Quantile(QuantileNyquistFreq),
Fixed(FixedNyquistFreq),
}Expand description
Derive Nyquist frequency from time series
Nyquist frequency for unevenly time series is not well-defined. Here we define it as $\pi / \delta t$, where $\delta t$ is some typical interval between consequent observations
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Average(AverageNyquistFreq)
Median(MedianNyquistFreq)
Quantile(QuantileNyquistFreq)
Fixed(FixedNyquistFreq)
Implementations
Trait Implementations
sourceimpl Clone for NyquistFreq
impl Clone for NyquistFreq
sourcefn clone(&self) -> NyquistFreq
fn clone(&self) -> NyquistFreq
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for NyquistFreq
impl Debug for NyquistFreq
sourceimpl<'de> Deserialize<'de> for NyquistFreq
impl<'de> Deserialize<'de> for NyquistFreq
sourcefn 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
sourceimpl From<AverageNyquistFreq> for NyquistFreq
impl From<AverageNyquistFreq> for NyquistFreq
sourcefn from(v: AverageNyquistFreq) -> NyquistFreq
fn from(v: AverageNyquistFreq) -> NyquistFreq
Converts to this type from the input type.
sourceimpl From<FixedNyquistFreq> for NyquistFreq
impl From<FixedNyquistFreq> for NyquistFreq
sourcefn from(v: FixedNyquistFreq) -> NyquistFreq
fn from(v: FixedNyquistFreq) -> NyquistFreq
Converts to this type from the input type.
sourceimpl From<MedianNyquistFreq> for NyquistFreq
impl From<MedianNyquistFreq> for NyquistFreq
sourcefn from(v: MedianNyquistFreq) -> NyquistFreq
fn from(v: MedianNyquistFreq) -> NyquistFreq
Converts to this type from the input type.
sourceimpl From<QuantileNyquistFreq> for NyquistFreq
impl From<QuantileNyquistFreq> for NyquistFreq
sourcefn from(v: QuantileNyquistFreq) -> NyquistFreq
fn from(v: QuantileNyquistFreq) -> NyquistFreq
Converts to this type from the input type.
sourceimpl JsonSchema for NyquistFreq
impl JsonSchema for NyquistFreq
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moresourceimpl Serialize for NyquistFreq
impl Serialize for NyquistFreq
sourceimpl TryInto<AverageNyquistFreq> for NyquistFreq
impl TryInto<AverageNyquistFreq> for NyquistFreq
sourcefn try_into(
self
) -> Result<AverageNyquistFreq, <Self as TryInto<AverageNyquistFreq>>::Error>
fn try_into(
self
) -> Result<AverageNyquistFreq, <Self as TryInto<AverageNyquistFreq>>::Error>
Performs the conversion.
sourceimpl TryInto<FixedNyquistFreq> for NyquistFreq
impl TryInto<FixedNyquistFreq> for NyquistFreq
sourcefn try_into(
self
) -> Result<FixedNyquistFreq, <Self as TryInto<FixedNyquistFreq>>::Error>
fn try_into(
self
) -> Result<FixedNyquistFreq, <Self as TryInto<FixedNyquistFreq>>::Error>
Performs the conversion.
sourceimpl TryInto<MedianNyquistFreq> for NyquistFreq
impl TryInto<MedianNyquistFreq> for NyquistFreq
sourcefn try_into(
self
) -> Result<MedianNyquistFreq, <Self as TryInto<MedianNyquistFreq>>::Error>
fn try_into(
self
) -> Result<MedianNyquistFreq, <Self as TryInto<MedianNyquistFreq>>::Error>
Performs the conversion.
sourceimpl TryInto<QuantileNyquistFreq> for NyquistFreq
impl TryInto<QuantileNyquistFreq> for NyquistFreq
sourcefn try_into(
self
) -> Result<QuantileNyquistFreq, <Self as TryInto<QuantileNyquistFreq>>::Error>
fn try_into(
self
) -> Result<QuantileNyquistFreq, <Self as TryInto<QuantileNyquistFreq>>::Error>
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for NyquistFreq
impl Send for NyquistFreq
impl Sync for NyquistFreq
impl Unpin for NyquistFreq
impl UnwindSafe for NyquistFreq
Blanket Implementations
sourceimpl<Src, Scheme> ApproxFrom<Src, Scheme> for Srcwhere
Scheme: ApproxScheme,
impl<Src, Scheme> ApproxFrom<Src, Scheme> for Srcwhere
Scheme: ApproxScheme,
sourcefn approx_from(src: Src) -> Result<Src, <Src as ApproxFrom<Src, Scheme>>::Err>
fn approx_from(src: Src) -> Result<Src, <Src as ApproxFrom<Src, Scheme>>::Err>
Convert the given value into an approximately equivalent representation.
sourceimpl<Dst, Src, Scheme> ApproxInto<Dst, Scheme> for Srcwhere
Dst: ApproxFrom<Src, Scheme>,
Scheme: ApproxScheme,
impl<Dst, Src, Scheme> ApproxInto<Dst, Scheme> for Srcwhere
Dst: ApproxFrom<Src, Scheme>,
Scheme: ApproxScheme,
type Err = <Dst as ApproxFrom<Src, Scheme>>::Err
type Err = <Dst as ApproxFrom<Src, Scheme>>::Err
The error type produced by a failed conversion.
sourcefn approx_into(self) -> Result<Dst, <Src as ApproxInto<Dst, Scheme>>::Err>
fn approx_into(self) -> Result<Dst, <Src as ApproxInto<Dst, Scheme>>::Err>
Convert the subject into an approximately equivalent representation.
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T, Dst> ConvAsUtil<Dst> for T
impl<T, Dst> ConvAsUtil<Dst> for T
sourcefn approx(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst, DefaultApprox>,
fn approx(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst, DefaultApprox>,
Approximate the subject with the default scheme.
sourcefn approx_by<Scheme>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst, Scheme>,
Scheme: ApproxScheme,
fn approx_by<Scheme>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst, Scheme>,
Scheme: ApproxScheme,
Approximate the subject with a specific scheme.
sourceimpl<T> ConvUtil for T
impl<T> ConvUtil for T
sourcefn approx_as<Dst>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst, DefaultApprox>,
fn approx_as<Dst>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst, DefaultApprox>,
Approximate the subject to a given type with the default scheme.
sourcefn approx_as_by<Dst, Scheme>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst, Scheme>,
Scheme: ApproxScheme,
fn approx_as_by<Dst, Scheme>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst, Scheme>,
Scheme: ApproxScheme,
Approximate the subject to a given type with a specific scheme.
sourcefn into_as<Dst>(self) -> Dstwhere
Self: Sized + Into<Dst>,
fn into_as<Dst>(self) -> Dstwhere
Self: Sized + Into<Dst>,
Convert the subject to a given type.