#[repr(C)]pub struct ArchivedSeasonalPatternwhere
Uuid: Archive,
u16: Archive,
SeasonalityType: Archive,
f32: Archive,
HybridTimestamp: Archive,
SeasonalPatternFlags: Archive,{Show 15 fields
pub id: Archived<Uuid>,
pub account_id: Archived<u16>,
pub seasonality_type: Archived<SeasonalityType>,
pub period_length: Archived<u16>,
pub cycle_count: Archived<u16>,
pub _pad: Archived<u16>,
pub confidence: Archived<f32>,
pub autocorrelation_peak: Archived<f32>,
pub seasonal_amplitude: Archived<f32>,
pub baseline: Archived<f32>,
pub trend_coefficient: Archived<f32>,
pub residual_variance: Archived<f32>,
pub first_observed: Archived<HybridTimestamp>,
pub last_observed: Archived<HybridTimestamp>,
pub flags: Archived<SeasonalPatternFlags>,
}Expand description
An archived SeasonalPattern
Fields§
§id: Archived<Uuid>The archived counterpart of SeasonalPattern::id
account_id: Archived<u16>The archived counterpart of SeasonalPattern::account_id
seasonality_type: Archived<SeasonalityType>The archived counterpart of SeasonalPattern::seasonality_type
period_length: Archived<u16>The archived counterpart of SeasonalPattern::period_length
cycle_count: Archived<u16>The archived counterpart of SeasonalPattern::cycle_count
_pad: Archived<u16>The archived counterpart of SeasonalPattern::_pad
confidence: Archived<f32>The archived counterpart of SeasonalPattern::confidence
autocorrelation_peak: Archived<f32>The archived counterpart of SeasonalPattern::autocorrelation_peak
seasonal_amplitude: Archived<f32>The archived counterpart of SeasonalPattern::seasonal_amplitude
baseline: Archived<f32>The archived counterpart of SeasonalPattern::baseline
trend_coefficient: Archived<f32>The archived counterpart of SeasonalPattern::trend_coefficient
residual_variance: Archived<f32>The archived counterpart of SeasonalPattern::residual_variance
first_observed: Archived<HybridTimestamp>The archived counterpart of SeasonalPattern::first_observed
last_observed: Archived<HybridTimestamp>The archived counterpart of SeasonalPattern::last_observed
flags: Archived<SeasonalPatternFlags>The archived counterpart of SeasonalPattern::flags
Auto Trait Implementations§
impl Freeze for ArchivedSeasonalPattern
impl RefUnwindSafe for ArchivedSeasonalPattern
impl Send for ArchivedSeasonalPattern
impl Sync for ArchivedSeasonalPattern
impl Unpin for ArchivedSeasonalPattern
impl UnwindSafe for ArchivedSeasonalPattern
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
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
Source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.