pub struct StandingQuery {
pub name: String,
pub schedule: Schedule,
pub plan: LogicalPlan,
pub output_metric: String,
}Expand description
Query that is periodically evaluated and materialized as another metric.
Fields§
§name: StringStable standing-query name.
schedule: ScheduleEvaluation cadence.
plan: LogicalPlanLogical query plan to evaluate.
output_metric: StringMetric name that receives materialized output.
Trait Implementations§
Source§impl Clone for StandingQuery
impl Clone for StandingQuery
Source§fn clone(&self) -> StandingQuery
fn clone(&self) -> StandingQuery
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 StandingQuery
impl Debug for StandingQuery
Source§impl PartialEq for StandingQuery
impl PartialEq for StandingQuery
impl Eq for StandingQuery
impl StructuralPartialEq for StandingQuery
Auto Trait Implementations§
impl Freeze for StandingQuery
impl RefUnwindSafe for StandingQuery
impl Send for StandingQuery
impl Sync for StandingQuery
impl Unpin for StandingQuery
impl UnsafeUnpin for StandingQuery
impl UnwindSafe for StandingQuery
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