pub struct DimAggRequest {
pub field_path: String,
pub graphql_alias: String,
pub value_column: String,
pub agg_type: DimAggType,
pub compare_column: String,
pub condition_filter: Option<FilterNode>,
pub select_where_value: Option<Value>,
}Expand description
Describes a dimension-level aggregation request extracted from the selection set.
PostBalance(maximum: Block_Slot) → DimAggRequest { agg_type: ArgMax, … }
Fields§
§field_path: String§graphql_alias: String§value_column: String§agg_type: DimAggType§compare_column: String§condition_filter: Option<FilterNode>§select_where_value: Option<Value>Auto Trait Implementations§
impl !Freeze for DimAggRequest
impl RefUnwindSafe for DimAggRequest
impl Send for DimAggRequest
impl Sync for DimAggRequest
impl Unpin for DimAggRequest
impl UnsafeUnpin for DimAggRequest
impl UnwindSafe for DimAggRequest
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