pub struct TemporalConfig {
pub window_sizes: Vec<i64>,
pub reference_date: Option<NaiveDate>,
pub min_edge_count: usize,
pub burst_threshold: f64,
}Expand description
Configuration for temporal feature computation.
Fields§
§window_sizes: Vec<i64>Window sizes in days for aggregation (e.g., [7, 30, 90]).
reference_date: Option<NaiveDate>Reference date for computing recency. If None, uses max date in data.
min_edge_count: usizeMinimum number of edges for a node to have temporal features computed.
burst_threshold: f64Threshold multiplier for burst detection (events > threshold * mean = burst).
Trait Implementations§
Source§impl Clone for TemporalConfig
impl Clone for TemporalConfig
Source§fn clone(&self) -> TemporalConfig
fn clone(&self) -> TemporalConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 TemporalConfig
impl Debug for TemporalConfig
Auto Trait Implementations§
impl Freeze for TemporalConfig
impl RefUnwindSafe for TemporalConfig
impl Send for TemporalConfig
impl Sync for TemporalConfig
impl Unpin for TemporalConfig
impl UnwindSafe for TemporalConfig
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