gcp_bigquery_client/model/
script_statistics.rs

1use crate::model::script_stack_frame::ScriptStackFrame;
2use serde::{Deserialize, Serialize};
3
4#[derive(Debug, Default, Clone, Serialize, Deserialize)]
5#[serde(rename_all = "camelCase")]
6pub struct ScriptStatistics {
7    /// [Output-only] Whether this child job was a statement or expression.
8    #[serde(skip_serializing_if = "Option::is_none")]
9    pub evaluation_kind: Option<String>,
10    /// Stack trace showing the line/column/procedure name of each frame on the stack at the point where the current evaluation happened. The leaf frame is first, the primary script is last. Never empty.
11    #[serde(skip_serializing_if = "Option::is_none")]
12    pub stack_frames: Option<Vec<ScriptStackFrame>>,
13}