Set the query execution start time
(
mut self,
query_execution_start_time: Option<DateTime<Utc>>,
)
| 90 | )] |
| 91 | /// Set the query execution start time |
| 92 | pub fn with_query_execution_start_time( |
| 93 | mut self, |
| 94 | query_execution_start_time: Option<DateTime<Utc>>, |
| 95 | ) -> Self { |
| 96 | self.query_execution_start_time = query_execution_start_time; |
| 97 | self |
| 98 | } |
| 99 | |
| 100 | #[deprecated( |
| 101 | since = "54.0.0", |
no outgoing calls