deno.land / x / deno@v1.28.2 / cli / cdp.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
/// <https://chromedevtools.github.io/devtools-protocol/tot/>use deno_core::serde_json;use deno_core::serde_json::Value;use serde::Deserialize;use serde::Deserializer;use serde::Serialize;
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-awaitPromise>#[derive(Debug, Clone, Serialize)]#[serde(rename_all = "camelCase")]pub struct AwaitPromiseArgs { pub promise_object_id: RemoteObjectId, #[serde(skip_serializing_if = "Option::is_none")] pub return_by_value: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub generate_preview: Option<bool>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-awaitPromise>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct AwaitPromiseResponse { pub result: RemoteObject, pub exception_details: Option<ExceptionDetails>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-callFunctionOn>#[derive(Debug, Clone, Serialize)]#[serde(rename_all = "camelCase")]pub struct CallFunctionOnArgs { pub function_declaration: String, #[serde(skip_serializing_if = "Option::is_none")] pub object_id: Option<RemoteObjectId>, #[serde(skip_serializing_if = "Option::is_none")] pub arguments: Option<Vec<CallArgument>>, #[serde(skip_serializing_if = "Option::is_none")] pub silent: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub return_by_value: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub generate_preview: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub user_gesture: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub await_promise: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub execution_context_id: Option<ExecutionContextId>, #[serde(skip_serializing_if = "Option::is_none")] pub object_group: Option<String>, #[serde(skip_serializing_if = "Option::is_none")] pub throw_on_side_effect: Option<bool>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-callFunctionOn>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct CallFunctionOnResponse { pub result: RemoteObject, pub exception_details: Option<ExceptionDetails>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-compileScript>#[derive(Debug, Clone, Serialize)]#[serde(rename_all = "camelCase")]pub struct CompileScriptArgs { pub expression: String, #[serde(rename = "sourceURL")] pub source_url: String, #[serde(skip_serializing_if = "Option::is_none")] pub execution_context_id: Option<ExecutionContextId>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-compileScript>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct CompileScriptResponse { pub script_id: Option<ScriptId>, pub exception_details: Option<ExceptionDetails>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate>#[derive(Debug, Clone, Serialize)]#[serde(rename_all = "camelCase")]pub struct EvaluateArgs { pub expression: String, #[serde(skip_serializing_if = "Option::is_none")] pub object_group: Option<String>, #[serde( rename = "includeCommandLineAPI", skip_serializing_if = "Option::is_none" )] pub include_command_line_api: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub silent: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub context_id: Option<ExecutionContextId>, #[serde(skip_serializing_if = "Option::is_none")] pub return_by_value: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub generate_preview: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub user_gesture: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub await_promise: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub throw_on_side_effect: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub timeout: Option<TimeDelta>, #[serde(skip_serializing_if = "Option::is_none")] pub disable_breaks: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub repl_mode: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] #[serde(rename = "allowUnsafeEvalBlockedByCSP")] pub allow_unsafe_eval_blocked_by_csp: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub unique_context_id: Option<String>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct EvaluateResponse { pub result: RemoteObject, pub exception_details: Option<ExceptionDetails>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-getProperties>#[derive(Debug, Clone, Serialize)]#[serde(rename_all = "camelCase")]pub struct GetPropertiesArgs { pub object_id: RemoteObjectId, #[serde(skip_serializing_if = "Option::is_none")] pub own_properties: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub accessor_properties_only: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub generate_preview: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub non_indexed_properties_only: Option<bool>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-getProperties>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct GetPropertiesResponse { pub result: Vec<PropertyDescriptor>, pub internal_properties: Option<Vec<InternalPropertyDescriptor>>, pub private_properties: Option<Vec<PrivatePropertyDescriptor>>, pub exception_details: Option<ExceptionDetails>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-globalLexicalScopeNames>#[derive(Debug, Clone, Serialize)]#[serde(rename_all = "camelCase")]pub struct GlobalLexicalScopeNamesArgs { #[serde(skip_serializing_if = "Option::is_none")] pub execution_context_id: Option<ExecutionContextId>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-globalLexicalScopeNames>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct GlobalLexicalScopeNamesResponse { pub names: Vec<String>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-queryObjects>#[derive(Debug, Clone, Serialize)]#[serde(rename_all = "camelCase")]pub struct QueryObjectsArgs { pub prototype_object_id: RemoteObjectId, #[serde(skip_serializing_if = "Option::is_none")] pub object_group: Option<String>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-queryObjects>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct QueryObjectsResponse { pub objects: RemoteObject,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-releaseObject>#[derive(Debug, Clone, Serialize)]#[serde(rename_all = "camelCase")]pub struct ReleaseObjectArgs { pub object_id: RemoteObjectId,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-releaseObjectGroup>#[derive(Debug, Clone, Serialize)]#[serde(rename_all = "camelCase")]pub struct ReleaseObjectGroupArgs { pub object_group: String,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-runScript>#[derive(Debug, Clone, Serialize)]#[serde(rename_all = "camelCase")]pub struct RunScriptArgs { pub script_id: ScriptId, #[serde(skip_serializing_if = "Option::is_none")] pub execution_context_id: Option<ExecutionContextId>, #[serde(skip_serializing_if = "Option::is_none")] pub object_group: Option<String>, #[serde(skip_serializing_if = "Option::is_none")] pub silent: Option<bool>, #[serde( rename = "includeCommandLineAPI", skip_serializing_if = "Option::is_none" )] pub include_command_line_api: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub return_by_value: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub generate_preview: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] pub await_promise: Option<bool>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-runScript>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct RunScriptResponse { pub result: RemoteObject, pub exception_details: Option<ExceptionDetails>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-setAsyncCallStackDepth>#[derive(Debug, Clone, Serialize)]#[serde(rename_all = "camelCase")]pub struct SetAsyncCallStackDepthArgs { pub max_depth: u64,}
// types
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-RemoteObject>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct RemoteObject { #[serde(rename = "type")] pub kind: String, pub subtype: Option<String>, pub class_name: Option<String>, #[serde(default, deserialize_with = "deserialize_some")] pub value: Option<Value>, pub unserializable_value: Option<UnserializableValue>, pub description: Option<String>, pub object_id: Option<RemoteObjectId>, pub preview: Option<ObjectPreview>, pub custom_preview: Option<CustomPreview>,}
// Any value that is present is considered Some value, including null.// ref: https://github.com/serde-rs/serde/issues/984#issuecomment-314143738fn deserialize_some<'de, T, D>(deserializer: D) -> Result<Option<T>, D::Error>where T: Deserialize<'de>, D: Deserializer<'de>,{ Deserialize::deserialize(deserializer).map(Some)}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ObjectPreview>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct ObjectPreview { #[serde(rename = "type")] pub kind: String, pub subtype: Option<String>, pub description: Option<String>, pub overflow: bool, pub properties: Vec<PropertyPreview>, pub entries: Option<Vec<EntryPreview>>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PropertyPreview>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct PropertyPreview { pub name: String, #[serde(rename = "type")] pub kind: String, pub value: Option<String>, pub value_preview: Option<ObjectPreview>, pub subtype: Option<String>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-EntryPreview>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct EntryPreview { pub key: Option<ObjectPreview>, pub value: ObjectPreview,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CustomPreview>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct CustomPreview { pub header: String, pub body_getter_id: RemoteObjectId,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ExceptionDetails>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct ExceptionDetails { pub exception_id: u64, pub text: String, pub line_number: u64, pub column_number: u64, pub script_id: Option<ScriptId>, pub url: Option<String>, pub stack_trace: Option<StackTrace>, pub exception: Option<RemoteObject>, pub execution_context_id: Option<ExecutionContextId>, pub exception_meta_data: Option<serde_json::Map<String, Value>>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTrace>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct StackTrace { pub description: Option<String>, pub call_frames: Vec<CallFrame>, pub parent: Option<Box<StackTrace>>, pub parent_id: Option<StackTraceId>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CallFrame>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct CallFrame { pub function_name: String, pub script_id: ScriptId, pub url: String, pub line_number: u64, pub column_number: u64,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTraceId>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct StackTraceId { pub id: String, pub debugger_id: Option<UniqueDebuggerId>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CallArgument>#[derive(Debug, Clone, Serialize)]#[serde(rename_all = "camelCase")]pub struct CallArgument { #[serde(skip_serializing_if = "Option::is_none")] pub value: Option<Value>, #[serde(skip_serializing_if = "Option::is_none")] pub unserializable_value: Option<UnserializableValue>, #[serde(skip_serializing_if = "Option::is_none")] pub object_id: Option<RemoteObjectId>,}
impl From<&RemoteObject> for CallArgument { fn from(obj: &RemoteObject) -> Self { Self { value: obj.value.clone(), unserializable_value: obj.unserializable_value.clone(), object_id: obj.object_id.clone(), } }}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-InternalPropertyDescriptor>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct PropertyDescriptor { pub name: String, pub value: Option<RemoteObject>, pub writable: Option<bool>, pub get: Option<RemoteObject>, pub set: Option<RemoteObject>, pub configurable: bool, pub enumerable: bool, pub was_thrown: Option<bool>, pub is_own: Option<bool>, pub symbol: Option<RemoteObject>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-InternalPropertyDescriptor>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct InternalPropertyDescriptor { pub name: String, pub value: Option<RemoteObject>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PrivatePropertyDescriptor>#[derive(Debug, Clone, Deserialize)]#[serde(rename_all = "camelCase")]pub struct PrivatePropertyDescriptor { pub name: String, pub value: Option<RemoteObject>, pub get: Option<RemoteObject>, pub set: Option<RemoteObject>,}
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-RemoteObjectId>pub type RemoteObjectId = String;
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ExecutionContextId>pub type ExecutionContextId = u64;
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ScriptId>pub type ScriptId = String;
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-TimeDelta>pub type TimeDelta = u64;
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-UnserializableValue>pub type UnserializableValue = String;
/// <https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-UniqueDebuggerId>pub type UniqueDebuggerId = String;
deno

Version Info

Tagged at
a year ago