gcp_bigquery_client/model/
script_statistics.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::model::script_stack_frame::ScriptStackFrame;
use serde::{Deserialize, Serialize};

#[derive(Debug, Default, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ScriptStatistics {
    /// [Output-only] Whether this child job was a statement or expression.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub evaluation_kind: Option<String>,
    /// 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.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub stack_frames: Option<Vec<ScriptStackFrame>>,
}