pub struct TemporalQuery {
pub domain: Option<String>,
pub model_type: Option<String>,
pub feature_dim: u8,
pub since: DateTime<Utc>,
pub until: Option<DateTime<Utc>>,
pub aggregation: Aggregation,
}Expand description
A temporal query specification.
Fields§
§domain: Option<String>Domain to query (None = all domains).
model_type: Option<String>Model type filter (e.g., “Product”, “Article”).
feature_dim: u8Feature dimension to track.
since: DateTime<Utc>Start of time range.
until: Option<DateTime<Utc>>End of time range (None = now).
aggregation: AggregationAggregation level.
Trait Implementations§
Source§impl Clone for TemporalQuery
impl Clone for TemporalQuery
Source§fn clone(&self) -> TemporalQuery
fn clone(&self) -> TemporalQuery
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 TemporalQuery
impl Debug for TemporalQuery
Source§impl<'de> Deserialize<'de> for TemporalQuery
impl<'de> Deserialize<'de> for TemporalQuery
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
Auto Trait Implementations§
impl Freeze for TemporalQuery
impl RefUnwindSafe for TemporalQuery
impl Send for TemporalQuery
impl Sync for TemporalQuery
impl Unpin for TemporalQuery
impl UnsafeUnpin for TemporalQuery
impl UnwindSafe for TemporalQuery
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