pub struct AnomalyAttributionQuery {
pub targets: Arc<[VariableId]>,
pub unit_rows: Option<Arc<[usize]>>,
pub max_units: usize,
}Expand description
Anomaly attribution query for observed units.
Fields§
§targets: Arc<[VariableId]>Variables whose anomaly scores are requested.
unit_rows: Option<Arc<[usize]>>Optional row indices into the factual table (None = all complete rows).
max_units: usizeMaximum number of units to score (hard size limit).
Implementations§
Source§impl AnomalyAttributionQuery
impl AnomalyAttributionQuery
Trait Implementations§
Source§impl Clone for AnomalyAttributionQuery
impl Clone for AnomalyAttributionQuery
Source§fn clone(&self) -> AnomalyAttributionQuery
fn clone(&self) -> AnomalyAttributionQuery
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 Debug for AnomalyAttributionQuery
impl Debug for AnomalyAttributionQuery
impl Eq for AnomalyAttributionQuery
Source§impl From<AnomalyAttributionQuery> for CausalQuery
impl From<AnomalyAttributionQuery> for CausalQuery
Source§fn from(query: AnomalyAttributionQuery) -> Self
fn from(query: AnomalyAttributionQuery) -> Self
Converts to this type from the input type.
Source§impl Hash for AnomalyAttributionQuery
impl Hash for AnomalyAttributionQuery
Source§impl PartialEq for AnomalyAttributionQuery
impl PartialEq for AnomalyAttributionQuery
impl StructuralPartialEq for AnomalyAttributionQuery
Auto Trait Implementations§
impl Freeze for AnomalyAttributionQuery
impl RefUnwindSafe for AnomalyAttributionQuery
impl Send for AnomalyAttributionQuery
impl Sync for AnomalyAttributionQuery
impl Unpin for AnomalyAttributionQuery
impl UnsafeUnpin for AnomalyAttributionQuery
impl UnwindSafe for AnomalyAttributionQuery
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