Skip to main content

rustenium_cdp_definitions/
lib.rs

1use serde::{Deserialize, Serialize};
2#[macro_use]
3mod macros;
4pub mod browser_protocol;
5pub mod js_protocol;
6#[derive(Debug, Clone, PartialEq, Eq, Default, Serialize, Deserialize)]
7pub struct Binary(String);
8impl AsRef<str> for Binary {
9    fn as_ref(&self) -> &str {
10        self.0.as_str()
11    }
12}
13impl AsRef<[u8]> for Binary {
14    fn as_ref(&self) -> &[u8] {
15        self.0.as_bytes()
16    }
17}
18impl From<Binary> for String {
19    fn from(b: Binary) -> String {
20        b.0
21    }
22}
23impl From<String> for Binary {
24    fn from(expr: String) -> Self {
25        Self(expr)
26    }
27}
28pub trait CommandResult {
29    type Result: serde::de::DeserializeOwned + std::fmt::Debug;
30    fn result_from_value(result: serde_json::Value) -> serde_json::Result<Self::Result> {
31        serde_json::from_value(result)
32    }
33}
34group_enum ! (Type { JsProtocol (js_protocol :: JsProtocolTypes) , BrowserProtocol (browser_protocol :: BrowserProtocolTypes) });
35group_enum ! (Command { JsProtocol (js_protocol :: JsProtocolCommands) , BrowserProtocol (browser_protocol :: BrowserProtocolCommands) } + identifiable);
36group_enum ! (Event { JsProtocol (js_protocol :: JsProtocolEvents) , BrowserProtocol (browser_protocol :: BrowserProtocolEvents) } + other + identifiable);
37impl_from ! (js_protocol :: debugger :: types :: DebuggerTypes => js_protocol :: JsProtocolTypes => Type , js_protocol :: debugger :: types :: BreakpointId => js_protocol :: JsProtocolTypes => Type , js_protocol :: debugger :: types :: CallFrameId => js_protocol :: JsProtocolTypes => Type , js_protocol :: debugger :: types :: Location => js_protocol :: JsProtocolTypes => Type , js_protocol :: debugger :: types :: ScriptPosition => js_protocol :: JsProtocolTypes => Type , js_protocol :: debugger :: types :: LocationRange => js_protocol :: JsProtocolTypes => Type , js_protocol :: debugger :: types :: CallFrame => js_protocol :: JsProtocolTypes => Type , js_protocol :: debugger :: types :: Scope => js_protocol :: JsProtocolTypes => Type , js_protocol :: debugger :: types :: SearchMatch => js_protocol :: JsProtocolTypes => Type , js_protocol :: debugger :: types :: BreakLocation => js_protocol :: JsProtocolTypes => Type , js_protocol :: debugger :: types :: WasmDisassemblyChunk => js_protocol :: JsProtocolTypes => Type , js_protocol :: debugger :: types :: ScriptLanguage => js_protocol :: JsProtocolTypes => Type , js_protocol :: debugger :: types :: DebugSymbols => js_protocol :: JsProtocolTypes => Type , js_protocol :: debugger :: types :: ResolvedBreakpoint => js_protocol :: JsProtocolTypes => Type , js_protocol :: debugger :: commands :: DebuggerCommands => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: ContinueToLocation => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: Disable => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: Enable => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: EvaluateOnCallFrame => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: GetPossibleBreakpoints => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: GetScriptSource => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: DisassembleWasmModule => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: NextWasmDisassemblyChunk => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: GetStackTrace => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: Pause => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: RemoveBreakpoint => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: RestartFrame => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: Resume => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: SearchInContent => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: SetAsyncCallStackDepth => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: SetBlackboxExecutionContexts => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: SetBlackboxPatterns => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: SetBlackboxedRanges => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: SetBreakpoint => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: SetInstrumentationBreakpoint => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: SetBreakpointByUrl => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: SetBreakpointOnFunctionCall => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: SetBreakpointsActive => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: SetPauseOnExceptions => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: SetReturnValue => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: SetScriptSource => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: SetSkipAllPauses => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: SetVariableValue => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: StepInto => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: StepOut => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: commands :: StepOver => js_protocol :: JsProtocolCommands => Command , js_protocol :: debugger :: events :: DebuggerEvents => js_protocol :: JsProtocolEvents => Event , js_protocol :: debugger :: events :: Paused => js_protocol :: JsProtocolEvents => Event , js_protocol :: debugger :: events :: Resumed => js_protocol :: JsProtocolEvents => Event , js_protocol :: debugger :: events :: ScriptFailedToParse => js_protocol :: JsProtocolEvents => Event , js_protocol :: debugger :: events :: ScriptParsed => js_protocol :: JsProtocolEvents => Event , js_protocol :: heap_profiler :: types :: HeapProfilerTypes => js_protocol :: JsProtocolTypes => Type , js_protocol :: heap_profiler :: types :: HeapSnapshotObjectId => js_protocol :: JsProtocolTypes => Type , js_protocol :: heap_profiler :: types :: SamplingHeapProfileNode => js_protocol :: JsProtocolTypes => Type , js_protocol :: heap_profiler :: types :: SamplingHeapProfileSample => js_protocol :: JsProtocolTypes => Type , js_protocol :: heap_profiler :: types :: SamplingHeapProfile => js_protocol :: JsProtocolTypes => Type , js_protocol :: heap_profiler :: commands :: HeapProfilerCommands => js_protocol :: JsProtocolCommands => Command , js_protocol :: heap_profiler :: commands :: AddInspectedHeapObject => js_protocol :: JsProtocolCommands => Command , js_protocol :: heap_profiler :: commands :: CollectGarbage => js_protocol :: JsProtocolCommands => Command , js_protocol :: heap_profiler :: commands :: Disable => js_protocol :: JsProtocolCommands => Command , js_protocol :: heap_profiler :: commands :: Enable => js_protocol :: JsProtocolCommands => Command , js_protocol :: heap_profiler :: commands :: GetHeapObjectId => js_protocol :: JsProtocolCommands => Command , js_protocol :: heap_profiler :: commands :: GetObjectByHeapObjectId => js_protocol :: JsProtocolCommands => Command , js_protocol :: heap_profiler :: commands :: GetSamplingProfile => js_protocol :: JsProtocolCommands => Command , js_protocol :: heap_profiler :: commands :: StartSampling => js_protocol :: JsProtocolCommands => Command , js_protocol :: heap_profiler :: commands :: StartTrackingHeapObjects => js_protocol :: JsProtocolCommands => Command , js_protocol :: heap_profiler :: commands :: StopSampling => js_protocol :: JsProtocolCommands => Command , js_protocol :: heap_profiler :: commands :: StopTrackingHeapObjects => js_protocol :: JsProtocolCommands => Command , js_protocol :: heap_profiler :: commands :: TakeHeapSnapshot => js_protocol :: JsProtocolCommands => Command , js_protocol :: heap_profiler :: events :: HeapProfilerEvents => js_protocol :: JsProtocolEvents => Event , js_protocol :: heap_profiler :: events :: AddHeapSnapshotChunk => js_protocol :: JsProtocolEvents => Event , js_protocol :: heap_profiler :: events :: HeapStatsUpdate => js_protocol :: JsProtocolEvents => Event , js_protocol :: heap_profiler :: events :: LastSeenObjectId => js_protocol :: JsProtocolEvents => Event , js_protocol :: heap_profiler :: events :: ReportHeapSnapshotProgress => js_protocol :: JsProtocolEvents => Event , js_protocol :: heap_profiler :: events :: ResetProfiles => js_protocol :: JsProtocolEvents => Event , js_protocol :: profiler :: types :: ProfilerTypes => js_protocol :: JsProtocolTypes => Type , js_protocol :: profiler :: types :: ProfileNode => js_protocol :: JsProtocolTypes => Type , js_protocol :: profiler :: types :: Profile => js_protocol :: JsProtocolTypes => Type , js_protocol :: profiler :: types :: PositionTickInfo => js_protocol :: JsProtocolTypes => Type , js_protocol :: profiler :: types :: CoverageRange => js_protocol :: JsProtocolTypes => Type , js_protocol :: profiler :: types :: FunctionCoverage => js_protocol :: JsProtocolTypes => Type , js_protocol :: profiler :: types :: ScriptCoverage => js_protocol :: JsProtocolTypes => Type , js_protocol :: profiler :: commands :: ProfilerCommands => js_protocol :: JsProtocolCommands => Command , js_protocol :: profiler :: commands :: Disable => js_protocol :: JsProtocolCommands => Command , js_protocol :: profiler :: commands :: Enable => js_protocol :: JsProtocolCommands => Command , js_protocol :: profiler :: commands :: GetBestEffortCoverage => js_protocol :: JsProtocolCommands => Command , js_protocol :: profiler :: commands :: SetSamplingInterval => js_protocol :: JsProtocolCommands => Command , js_protocol :: profiler :: commands :: Start => js_protocol :: JsProtocolCommands => Command , js_protocol :: profiler :: commands :: StartPreciseCoverage => js_protocol :: JsProtocolCommands => Command , js_protocol :: profiler :: commands :: Stop => js_protocol :: JsProtocolCommands => Command , js_protocol :: profiler :: commands :: StopPreciseCoverage => js_protocol :: JsProtocolCommands => Command , js_protocol :: profiler :: commands :: TakePreciseCoverage => js_protocol :: JsProtocolCommands => Command , js_protocol :: profiler :: events :: ProfilerEvents => js_protocol :: JsProtocolEvents => Event , js_protocol :: profiler :: events :: ConsoleProfileFinished => js_protocol :: JsProtocolEvents => Event , js_protocol :: profiler :: events :: ConsoleProfileStarted => js_protocol :: JsProtocolEvents => Event , js_protocol :: profiler :: events :: PreciseCoverageDeltaUpdate => js_protocol :: JsProtocolEvents => Event , js_protocol :: runtime :: types :: RuntimeTypes => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: ScriptId => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: SerializationOptions => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: DeepSerializedValue => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: RemoteObjectId => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: UnserializableValue => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: RemoteObject => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: CustomPreview => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: ObjectPreview => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: PropertyPreview => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: EntryPreview => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: PropertyDescriptor => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: InternalPropertyDescriptor => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: PrivatePropertyDescriptor => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: CallArgument => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: ExecutionContextId => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: ExecutionContextDescription => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: ExceptionDetails => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: Timestamp => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: TimeDelta => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: CallFrame => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: StackTrace => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: UniqueDebuggerId => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: types :: StackTraceId => js_protocol :: JsProtocolTypes => Type , js_protocol :: runtime :: commands :: RuntimeCommands => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: AwaitPromise => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: CallFunctionOn => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: CompileScript => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: Disable => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: DiscardConsoleEntries => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: Enable => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: Evaluate => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: GetIsolateId => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: GetHeapUsage => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: GetProperties => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: GlobalLexicalScopeNames => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: QueryObjects => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: ReleaseObject => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: ReleaseObjectGroup => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: RunIfWaitingForDebugger => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: RunScript => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: SetAsyncCallStackDepth => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: SetCustomObjectFormatterEnabled => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: SetMaxCallStackSizeToCapture => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: TerminateExecution => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: AddBinding => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: RemoveBinding => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: commands :: GetExceptionDetails => js_protocol :: JsProtocolCommands => Command , js_protocol :: runtime :: events :: RuntimeEvents => js_protocol :: JsProtocolEvents => Event , js_protocol :: runtime :: events :: BindingCalled => js_protocol :: JsProtocolEvents => Event , js_protocol :: runtime :: events :: ConsoleApiCalled => js_protocol :: JsProtocolEvents => Event , js_protocol :: runtime :: events :: ExceptionRevoked => js_protocol :: JsProtocolEvents => Event , js_protocol :: runtime :: events :: ExceptionThrown => js_protocol :: JsProtocolEvents => Event , js_protocol :: runtime :: events :: ExecutionContextCreated => js_protocol :: JsProtocolEvents => Event , js_protocol :: runtime :: events :: ExecutionContextDestroyed => js_protocol :: JsProtocolEvents => Event , js_protocol :: runtime :: events :: ExecutionContextsCleared => js_protocol :: JsProtocolEvents => Event , js_protocol :: runtime :: events :: InspectRequested => js_protocol :: JsProtocolEvents => Event , browser_protocol :: accessibility :: types :: AccessibilityTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: accessibility :: types :: AxNodeId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: accessibility :: types :: AxValueType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: accessibility :: types :: AxValueSourceType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: accessibility :: types :: AxValueNativeSourceType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: accessibility :: types :: AxValueSource => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: accessibility :: types :: AxRelatedNode => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: accessibility :: types :: AxProperty => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: accessibility :: types :: AxValue => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: accessibility :: types :: AxPropertyName => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: accessibility :: types :: AxNode => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: accessibility :: commands :: AccessibilityCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: accessibility :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: accessibility :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: accessibility :: commands :: GetPartialAxTree => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: accessibility :: commands :: GetFullAxTree => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: accessibility :: commands :: GetRootAxNode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: accessibility :: commands :: GetAxNodeAndAncestors => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: accessibility :: commands :: GetChildAxNodes => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: accessibility :: commands :: QueryAxTree => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: accessibility :: events :: AccessibilityEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: accessibility :: events :: LoadComplete => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: accessibility :: events :: NodesUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: animation :: types :: AnimationTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: animation :: types :: Animation => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: animation :: types :: ViewOrScrollTimeline => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: animation :: types :: AnimationEffect => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: animation :: types :: KeyframesRule => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: animation :: types :: KeyframeStyle => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: animation :: commands :: AnimationCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: animation :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: animation :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: animation :: commands :: GetCurrentTime => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: animation :: commands :: GetPlaybackRate => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: animation :: commands :: ReleaseAnimations => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: animation :: commands :: ResolveAnimation => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: animation :: commands :: SeekAnimations => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: animation :: commands :: SetPaused => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: animation :: commands :: SetPlaybackRate => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: animation :: commands :: SetTiming => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: animation :: events :: AnimationEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: animation :: events :: AnimationCanceled => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: animation :: events :: AnimationCreated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: animation :: events :: AnimationStarted => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: animation :: events :: AnimationUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: audits :: types :: AuditsTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: AffectedCookie => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: AffectedRequest => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: AffectedFrame => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: CookieExclusionReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: CookieWarningReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: CookieOperation => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: InsightType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: CookieIssueInsight => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: CookieIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: PerformanceIssueType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: PerformanceIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: MixedContentResolutionStatus => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: MixedContentResourceType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: MixedContentIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: BlockedByResponseReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: BlockedByResponseIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: HeavyAdResolutionStatus => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: HeavyAdReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: HeavyAdIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: ContentSecurityPolicyViolationType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: SourceCodeLocation => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: ContentSecurityPolicyIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: SharedArrayBufferIssueType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: SharedArrayBufferIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: LowTextContrastIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: CorsIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: AttributionReportingIssueType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: SharedDictionaryError => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: SriMessageSignatureError => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: UnencodedDigestError => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: ConnectionAllowlistError => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: AttributionReportingIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: QuirksModeIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: SharedDictionaryIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: SriMessageSignatureIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: UnencodedDigestIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: ConnectionAllowlistIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: GenericIssueErrorType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: GenericIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: DeprecationIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: BounceTrackingIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: CookieDeprecationMetadataIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: ClientHintIssueReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: FederatedAuthRequestIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: FederatedAuthRequestIssueReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: FederatedAuthUserInfoRequestIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: FederatedAuthUserInfoRequestIssueReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: ClientHintIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: FailedRequestInfo => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: PartitioningBlobUrlInfo => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: PartitioningBlobUrlIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: ElementAccessibilityIssueReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: ElementAccessibilityIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: StyleSheetLoadingIssueReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: StylesheetLoadingIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: PropertyRuleIssueReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: PropertyRuleIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: UserReidentificationIssueType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: UserReidentificationIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: PermissionElementIssueType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: PermissionElementIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: AdScriptIdentifier => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: AdAncestry => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: SelectivePermissionsInterventionIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: InspectorIssueCode => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: InspectorIssueDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: IssueId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: types :: InspectorIssue => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: audits :: commands :: AuditsCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: audits :: commands :: GetEncodedResponse => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: audits :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: audits :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: audits :: commands :: CheckContrast => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: audits :: commands :: CheckFormsIssues => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: audits :: events :: AuditsEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: audits :: events :: IssueAdded => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: autofill :: types :: AutofillTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: autofill :: types :: CreditCard => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: autofill :: types :: AddressField => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: autofill :: types :: AddressFields => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: autofill :: types :: Address => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: autofill :: types :: AddressUi => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: autofill :: types :: FillingStrategy => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: autofill :: types :: FilledField => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: autofill :: commands :: AutofillCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: autofill :: commands :: Trigger => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: autofill :: commands :: SetAddresses => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: autofill :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: autofill :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: autofill :: events :: AutofillEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: autofill :: events :: AddressFormFilled => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: background_service :: types :: BackgroundServiceTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: background_service :: types :: ServiceName => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: background_service :: types :: EventMetadata => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: background_service :: types :: BackgroundServiceEvent => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: background_service :: commands :: BackgroundServiceCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: background_service :: commands :: StartObserving => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: background_service :: commands :: StopObserving => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: background_service :: commands :: SetRecording => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: background_service :: commands :: ClearEvents => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: background_service :: events :: BackgroundServiceEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: background_service :: events :: RecordingStateChanged => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: background_service :: events :: BackgroundServiceEventReceived => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: bluetooth_emulation :: types :: BluetoothEmulationTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: bluetooth_emulation :: types :: CentralState => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: bluetooth_emulation :: types :: GattOperationType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: bluetooth_emulation :: types :: CharacteristicWriteType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: bluetooth_emulation :: types :: CharacteristicOperationType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: bluetooth_emulation :: types :: DescriptorOperationType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: bluetooth_emulation :: types :: ManufacturerData => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: bluetooth_emulation :: types :: ScanRecord => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: bluetooth_emulation :: types :: ScanEntry => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: bluetooth_emulation :: types :: CharacteristicProperties => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: bluetooth_emulation :: commands :: BluetoothEmulationCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: bluetooth_emulation :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: bluetooth_emulation :: commands :: SetSimulatedCentralState => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: bluetooth_emulation :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: bluetooth_emulation :: commands :: SimulatePreconnectedPeripheral => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: bluetooth_emulation :: commands :: SimulateAdvertisement => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: bluetooth_emulation :: commands :: SimulateGattOperationResponse => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: bluetooth_emulation :: commands :: SimulateCharacteristicOperationResponse => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: bluetooth_emulation :: commands :: SimulateDescriptorOperationResponse => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: bluetooth_emulation :: commands :: AddService => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: bluetooth_emulation :: commands :: RemoveService => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: bluetooth_emulation :: commands :: AddCharacteristic => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: bluetooth_emulation :: commands :: RemoveCharacteristic => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: bluetooth_emulation :: commands :: AddDescriptor => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: bluetooth_emulation :: commands :: RemoveDescriptor => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: bluetooth_emulation :: commands :: SimulateGattDisconnection => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: bluetooth_emulation :: events :: BluetoothEmulationEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: bluetooth_emulation :: events :: GattOperationReceived => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: bluetooth_emulation :: events :: CharacteristicOperationReceived => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: bluetooth_emulation :: events :: DescriptorOperationReceived => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: browser :: types :: BrowserTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: browser :: types :: BrowserContextId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: browser :: types :: WindowId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: browser :: types :: WindowState => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: browser :: types :: Bounds => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: browser :: types :: PermissionType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: browser :: types :: PermissionSetting => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: browser :: types :: PermissionDescriptor => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: browser :: types :: BrowserCommandId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: browser :: types :: Bucket => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: browser :: types :: Histogram => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: browser :: types :: PrivacySandboxApi => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: browser :: commands :: BrowserCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: SetPermission => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: ResetPermissions => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: SetDownloadBehavior => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: CancelDownload => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: Close => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: Crash => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: CrashGpuProcess => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: GetVersion => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: GetBrowserCommandLine => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: GetHistograms => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: GetHistogram => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: GetWindowBounds => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: GetWindowForTarget => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: SetWindowBounds => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: SetContentsSize => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: SetDockTile => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: ExecuteBrowserCommand => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: AddPrivacySandboxEnrollmentOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: commands :: AddPrivacySandboxCoordinatorKeyConfig => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: browser :: events :: BrowserEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: browser :: events :: DownloadWillBegin => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: browser :: events :: DownloadProgress => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: css :: types :: CssTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: StyleSheetOrigin => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: PseudoElementMatches => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssAnimationStyle => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: InheritedStyleEntry => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: InheritedAnimatedStyleEntry => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: InheritedPseudoElementMatches => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: RuleMatch => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: Value => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: Specificity => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: SelectorList => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssStyleSheetHeader => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssRule => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssRuleType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: RuleUsage => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: SourceRange => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: ShorthandEntry => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssComputedStyleProperty => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: ComputedStyleExtraFields => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssStyle => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssProperty => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssMedia => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: MediaQuery => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: MediaQueryExpression => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssContainerQuery => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssSupports => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssScope => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssLayer => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssStartingStyle => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssLayerData => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: PlatformFontUsage => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: FontVariationAxis => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: FontFace => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssTryRule => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssPositionTryRule => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssKeyframesRule => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssPropertyRegistration => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssAtRule => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssPropertyRule => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssFunctionParameter => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssFunctionConditionNode => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssFunctionNode => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssFunctionRule => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: CssKeyframeRule => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: types :: StyleDeclarationEdit => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: css :: commands :: CssCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: AddRule => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: CollectClassNames => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: CreateStyleSheet => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: ForcePseudoState => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: ForceStartingStyle => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: GetBackgroundColors => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: GetComputedStyleForNode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: ResolveValues => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: GetLonghandProperties => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: GetInlineStylesForNode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: GetAnimatedStylesForNode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: GetMatchedStylesForNode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: GetEnvironmentVariables => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: GetMediaQueries => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: GetPlatformFontsForNode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: GetStyleSheetText => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: GetLayersForNode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: GetLocationForSelector => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: TrackComputedStyleUpdatesForNode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: TrackComputedStyleUpdates => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: TakeComputedStyleUpdates => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: SetEffectivePropertyValueForNode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: SetPropertyRulePropertyName => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: SetKeyframeKey => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: SetMediaText => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: SetContainerQueryText => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: SetSupportsText => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: SetScopeText => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: SetRuleSelector => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: SetStyleSheetText => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: SetStyleTexts => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: StartRuleUsageTracking => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: StopRuleUsageTracking => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: TakeCoverageDelta => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: commands :: SetLocalFontsEnabled => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: css :: events :: CssEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: css :: events :: FontsUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: css :: events :: MediaQueryResultChanged => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: css :: events :: StyleSheetAdded => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: css :: events :: StyleSheetChanged => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: css :: events :: StyleSheetRemoved => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: css :: events :: ComputedStyleUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: cache_storage :: types :: CacheStorageTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: cache_storage :: types :: CacheId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: cache_storage :: types :: CachedResponseType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: cache_storage :: types :: DataEntry => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: cache_storage :: types :: Cache => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: cache_storage :: types :: Header => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: cache_storage :: types :: CachedResponse => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: cache_storage :: commands :: CacheStorageCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: cache_storage :: commands :: DeleteCache => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: cache_storage :: commands :: DeleteEntry => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: cache_storage :: commands :: RequestCacheNames => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: cache_storage :: commands :: RequestCachedResponse => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: cache_storage :: commands :: RequestEntries => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: cast :: types :: CastTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: cast :: types :: Sink => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: cast :: commands :: CastCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: cast :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: cast :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: cast :: commands :: SetSinkToUse => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: cast :: commands :: StartDesktopMirroring => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: cast :: commands :: StartTabMirroring => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: cast :: commands :: StopCasting => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: cast :: events :: CastEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: cast :: events :: SinksUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: cast :: events :: IssueUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: types :: DomTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: types :: NodeId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: types :: BackendNodeId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: types :: StyleSheetId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: types :: BackendNode => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: types :: PseudoType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: types :: ShadowRootType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: types :: CompatibilityMode => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: types :: PhysicalAxes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: types :: LogicalAxes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: types :: ScrollOrientation => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: types :: Node => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: types :: DetachedElementInfo => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: types :: Rgba => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: types :: Quad => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: types :: BoxModel => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: types :: ShapeOutsideInfo => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: types :: Rect => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: types :: CssComputedStyleProperty => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom :: commands :: DomCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: CollectClassNamesFromSubtree => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: CopyTo => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: DescribeNode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: ScrollIntoViewIfNeeded => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: DiscardSearchResults => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: Focus => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: GetAttributes => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: GetBoxModel => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: GetContentQuads => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: GetDocument => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: GetNodesForSubtreeByStyle => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: GetNodeForLocation => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: GetOuterHtml => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: GetRelayoutBoundary => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: GetSearchResults => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: HideHighlight => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: HighlightNode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: HighlightRect => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: MarkUndoableState => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: MoveTo => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: PerformSearch => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: PushNodeByPathToFrontend => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: PushNodesByBackendIdsToFrontend => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: QuerySelector => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: QuerySelectorAll => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: GetTopLayerElements => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: GetElementByRelation => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: Redo => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: RemoveAttribute => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: RemoveNode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: RequestChildNodes => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: RequestNode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: ResolveNode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: SetAttributeValue => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: SetAttributesAsText => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: SetFileInputFiles => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: SetNodeStackTracesEnabled => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: GetNodeStackTraces => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: GetFileInfo => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: GetDetachedDomNodes => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: SetInspectedNode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: SetNodeName => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: SetNodeValue => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: SetOuterHtml => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: Undo => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: GetFrameOwner => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: GetContainerForNode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: GetQueryingDescendantsForContainer => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: GetAnchorElement => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: commands :: ForceShowPopover => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom :: events :: DomEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: AttributeModified => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: AdoptedStyleSheetsModified => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: AttributeRemoved => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: CharacterDataModified => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: ChildNodeCountUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: ChildNodeInserted => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: ChildNodeRemoved => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: DistributedNodesUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: DocumentUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: InlineStyleInvalidated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: PseudoElementAdded => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: TopLayerElementsUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: ScrollableFlagUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: AdRelatedStateUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: AffectedByStartingStylesFlagUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: PseudoElementRemoved => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: SetChildNodes => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: ShadowRootPopped => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom :: events :: ShadowRootPushed => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom_debugger :: types :: DomDebuggerTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_debugger :: types :: DomBreakpointType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_debugger :: types :: CspViolationType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_debugger :: types :: EventListener => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_debugger :: commands :: DomDebuggerCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_debugger :: commands :: GetEventListeners => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_debugger :: commands :: RemoveDomBreakpoint => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_debugger :: commands :: RemoveEventListenerBreakpoint => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_debugger :: commands :: RemoveXhrBreakpoint => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_debugger :: commands :: SetBreakOnCspViolation => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_debugger :: commands :: SetDomBreakpoint => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_debugger :: commands :: SetEventListenerBreakpoint => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_debugger :: commands :: SetXhrBreakpoint => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_snapshot :: types :: DomSnapshotTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_snapshot :: types :: DomNode => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_snapshot :: types :: InlineTextBox => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_snapshot :: types :: LayoutTreeNode => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_snapshot :: types :: ComputedStyle => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_snapshot :: types :: NameValue => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_snapshot :: types :: StringIndex => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_snapshot :: types :: ArrayOfStrings => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_snapshot :: types :: RareStringData => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_snapshot :: types :: RareBooleanData => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_snapshot :: types :: RareIntegerData => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_snapshot :: types :: Rectangle => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_snapshot :: types :: DocumentSnapshot => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_snapshot :: types :: NodeTreeSnapshot => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_snapshot :: types :: LayoutTreeSnapshot => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_snapshot :: types :: TextBoxSnapshot => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_snapshot :: commands :: DomSnapshotCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_snapshot :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_snapshot :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_snapshot :: commands :: CaptureSnapshot => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_storage :: types :: DomStorageTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_storage :: types :: SerializedStorageKey => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_storage :: types :: StorageId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_storage :: types :: Item => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: dom_storage :: commands :: DomStorageCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_storage :: commands :: Clear => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_storage :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_storage :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_storage :: commands :: GetDomStorageItems => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_storage :: commands :: RemoveDomStorageItem => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_storage :: commands :: SetDomStorageItem => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: dom_storage :: events :: DomStorageEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom_storage :: events :: DomStorageItemAdded => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom_storage :: events :: DomStorageItemRemoved => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom_storage :: events :: DomStorageItemUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: dom_storage :: events :: DomStorageItemsCleared => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: device_access :: types :: DeviceAccessTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: device_access :: types :: RequestId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: device_access :: types :: DeviceId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: device_access :: types :: PromptDevice => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: device_access :: commands :: DeviceAccessCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: device_access :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: device_access :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: device_access :: commands :: SelectPrompt => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: device_access :: commands :: CancelPrompt => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: device_access :: events :: DeviceAccessEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: device_access :: events :: DeviceRequestPrompted => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: device_orientation :: commands :: DeviceOrientationCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: device_orientation :: commands :: ClearDeviceOrientationOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: device_orientation :: commands :: SetDeviceOrientationOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: types :: EmulationTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: SafeAreaInsets => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: ScreenOrientation => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: DisplayFeature => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: DevicePosture => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: MediaFeature => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: VirtualTimePolicy => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: UserAgentBrandVersion => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: UserAgentMetadata => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: SensorType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: SensorMetadata => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: SensorReadingSingle => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: SensorReadingXyz => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: SensorReadingQuaternion => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: SensorReading => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: PressureSource => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: PressureState => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: PressureMetadata => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: WorkAreaInsets => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: ScreenId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: ScreenInfo => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: types :: DisabledImageType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: emulation :: commands :: EmulationCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: ClearDeviceMetricsOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: ClearGeolocationOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: ResetPageScaleFactor => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetFocusEmulationEnabled => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetAutoDarkModeOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetCpuThrottlingRate => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetDefaultBackgroundColorOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetSafeAreaInsetsOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetDeviceMetricsOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetDevicePostureOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: ClearDevicePostureOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetDisplayFeaturesOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: ClearDisplayFeaturesOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetScrollbarsHidden => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetDocumentCookieDisabled => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetEmitTouchEventsForMouse => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetEmulatedMedia => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetEmulatedVisionDeficiency => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetEmulatedOsTextScale => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetGeolocationOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: GetOverriddenSensorInformation => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetSensorOverrideEnabled => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetSensorOverrideReadings => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetPressureSourceOverrideEnabled => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetPressureStateOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetPressureDataOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetIdleOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: ClearIdleOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetPageScaleFactor => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetScriptExecutionDisabled => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetTouchEmulationEnabled => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetVirtualTimePolicy => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetLocaleOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetTimezoneOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetDisabledImageTypes => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetDataSaverOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetHardwareConcurrencyOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetUserAgentOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetAutomationOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: SetSmallViewportHeightDifferenceOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: GetScreenInfos => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: AddScreen => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: commands :: RemoveScreen => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: emulation :: events :: EmulationEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: emulation :: events :: VirtualTimeBudgetExpired => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: event_breakpoints :: commands :: EventBreakpointsCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: event_breakpoints :: commands :: SetInstrumentationBreakpoint => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: event_breakpoints :: commands :: RemoveInstrumentationBreakpoint => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: event_breakpoints :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: extensions :: types :: ExtensionsTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: extensions :: types :: StorageArea => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: extensions :: types :: ExtensionInfo => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: extensions :: commands :: ExtensionsCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: extensions :: commands :: TriggerAction => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: extensions :: commands :: LoadUnpacked => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: extensions :: commands :: GetExtensions => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: extensions :: commands :: Uninstall => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: extensions :: commands :: GetStorageItems => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: extensions :: commands :: RemoveStorageItems => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: extensions :: commands :: ClearStorageItems => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: extensions :: commands :: SetStorageItems => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fed_cm :: types :: FedCmTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: fed_cm :: types :: LoginState => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: fed_cm :: types :: DialogType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: fed_cm :: types :: DialogButton => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: fed_cm :: types :: AccountUrlType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: fed_cm :: types :: Account => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: fed_cm :: commands :: FedCmCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fed_cm :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fed_cm :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fed_cm :: commands :: SelectAccount => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fed_cm :: commands :: ClickDialogButton => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fed_cm :: commands :: OpenUrl => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fed_cm :: commands :: DismissDialog => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fed_cm :: commands :: ResetCooldown => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fed_cm :: events :: FedCmEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: fed_cm :: events :: DialogShown => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: fed_cm :: events :: DialogClosed => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: fetch :: types :: FetchTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: fetch :: types :: RequestId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: fetch :: types :: RequestStage => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: fetch :: types :: RequestPattern => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: fetch :: types :: HeaderEntry => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: fetch :: types :: AuthChallenge => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: fetch :: types :: AuthChallengeResponse => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: fetch :: commands :: FetchCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fetch :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fetch :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fetch :: commands :: FailRequest => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fetch :: commands :: FulfillRequest => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fetch :: commands :: ContinueRequest => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fetch :: commands :: ContinueWithAuth => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fetch :: commands :: ContinueResponse => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fetch :: commands :: GetResponseBody => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fetch :: commands :: TakeResponseBodyAsStream => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: fetch :: events :: FetchEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: fetch :: events :: RequestPaused => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: fetch :: events :: AuthRequired => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: file_system :: types :: FileSystemTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: file_system :: types :: File => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: file_system :: types :: Directory => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: file_system :: types :: BucketFileSystemLocator => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: file_system :: commands :: FileSystemCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: file_system :: commands :: GetDirectory => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: headless_experimental :: types :: HeadlessExperimentalTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: headless_experimental :: types :: ScreenshotParams => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: headless_experimental :: commands :: HeadlessExperimentalCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: headless_experimental :: commands :: BeginFrame => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: io :: types :: IoTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: io :: types :: StreamHandle => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: io :: commands :: IoCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: io :: commands :: Close => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: io :: commands :: Read => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: io :: commands :: ResolveBlob => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: indexed_db :: types :: IndexedDbTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: indexed_db :: types :: DatabaseWithObjectStores => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: indexed_db :: types :: ObjectStore => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: indexed_db :: types :: ObjectStoreIndex => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: indexed_db :: types :: Key => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: indexed_db :: types :: KeyRange => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: indexed_db :: types :: DataEntry => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: indexed_db :: types :: KeyPath => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: indexed_db :: commands :: IndexedDbCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: indexed_db :: commands :: ClearObjectStore => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: indexed_db :: commands :: DeleteDatabase => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: indexed_db :: commands :: DeleteObjectStoreEntries => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: indexed_db :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: indexed_db :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: indexed_db :: commands :: RequestData => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: indexed_db :: commands :: GetMetadata => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: indexed_db :: commands :: RequestDatabase => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: indexed_db :: commands :: RequestDatabaseNames => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: input :: types :: InputTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: input :: types :: TouchPoint => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: input :: types :: GestureSourceType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: input :: types :: MouseButton => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: input :: types :: TimeSinceEpoch => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: input :: types :: DragDataItem => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: input :: types :: DragData => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: input :: commands :: InputCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: input :: commands :: DispatchDragEvent => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: input :: commands :: DispatchKeyEvent => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: input :: commands :: InsertText => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: input :: commands :: ImeSetComposition => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: input :: commands :: DispatchMouseEvent => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: input :: commands :: DispatchTouchEvent => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: input :: commands :: CancelDragging => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: input :: commands :: EmulateTouchFromMouseEvent => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: input :: commands :: SetIgnoreInputEvents => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: input :: commands :: SetInterceptDrags => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: input :: commands :: SynthesizePinchGesture => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: input :: commands :: SynthesizeScrollGesture => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: input :: commands :: SynthesizeTapGesture => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: input :: events :: InputEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: input :: events :: DragIntercepted => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: inspector :: commands :: InspectorCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: inspector :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: inspector :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: inspector :: events :: InspectorEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: inspector :: events :: Detached => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: inspector :: events :: TargetCrashed => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: inspector :: events :: TargetReloadedAfterCrash => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: inspector :: events :: WorkerScriptLoaded => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: layer_tree :: types :: LayerTreeTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: layer_tree :: types :: LayerId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: layer_tree :: types :: SnapshotId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: layer_tree :: types :: ScrollRect => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: layer_tree :: types :: StickyPositionConstraint => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: layer_tree :: types :: PictureTile => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: layer_tree :: types :: Layer => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: layer_tree :: types :: PaintProfile => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: layer_tree :: commands :: LayerTreeCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: layer_tree :: commands :: CompositingReasons => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: layer_tree :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: layer_tree :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: layer_tree :: commands :: LoadSnapshot => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: layer_tree :: commands :: MakeSnapshot => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: layer_tree :: commands :: ProfileSnapshot => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: layer_tree :: commands :: ReleaseSnapshot => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: layer_tree :: commands :: ReplaySnapshot => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: layer_tree :: commands :: SnapshotCommandLog => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: layer_tree :: events :: LayerTreeEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: layer_tree :: events :: LayerPainted => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: layer_tree :: events :: LayerTreeDidChange => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: log :: types :: LogTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: log :: types :: LogEntry => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: log :: types :: ViolationSetting => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: log :: commands :: LogCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: log :: commands :: Clear => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: log :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: log :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: log :: commands :: StartViolationsReport => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: log :: commands :: StopViolationsReport => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: log :: events :: LogEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: log :: events :: EntryAdded => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: media :: types :: MediaTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: media :: types :: PlayerId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: media :: types :: Timestamp => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: media :: types :: PlayerMessage => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: media :: types :: PlayerProperty => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: media :: types :: PlayerEvent => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: media :: types :: PlayerErrorSourceLocation => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: media :: types :: PlayerError => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: media :: types :: Player => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: media :: commands :: MediaCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: media :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: media :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: media :: events :: MediaEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: media :: events :: PlayerPropertiesChanged => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: media :: events :: PlayerEventsAdded => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: media :: events :: PlayerMessagesLogged => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: media :: events :: PlayerErrorsRaised => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: media :: events :: PlayerCreated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: memory :: types :: MemoryTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: memory :: types :: PressureLevel => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: memory :: types :: SamplingProfileNode => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: memory :: types :: SamplingProfile => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: memory :: types :: Module => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: memory :: types :: DomCounter => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: memory :: commands :: MemoryCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: memory :: commands :: GetDomCounters => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: memory :: commands :: GetDomCountersForLeakDetection => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: memory :: commands :: PrepareForLeakDetection => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: memory :: commands :: ForciblyPurgeJavaScriptMemory => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: memory :: commands :: SetPressureNotificationsSuppressed => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: memory :: commands :: SimulatePressureNotification => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: memory :: commands :: StartSampling => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: memory :: commands :: StopSampling => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: memory :: commands :: GetAllTimeSamplingProfile => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: memory :: commands :: GetBrowserSamplingProfile => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: memory :: commands :: GetSamplingProfile => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: types :: NetworkTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ResourceType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: LoaderId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: RequestId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: InterceptionId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ErrorReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: TimeSinceEpoch => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: MonotonicTime => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: Headers => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ConnectionType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: CookieSameSite => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: CookiePriority => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: CookieSourceScheme => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ResourceTiming => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ResourcePriority => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: RenderBlockingBehavior => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: PostDataEntry => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: Request => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: SignedCertificateTimestamp => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: SecurityDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: CertificateTransparencyCompliance => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: BlockedReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: CorsError => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: CorsErrorStatus => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ServiceWorkerResponseSource => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: TrustTokenParams => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: TrustTokenOperationType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: AlternateProtocolUsage => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ServiceWorkerRouterSource => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ServiceWorkerRouterInfo => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: Response => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: WebSocketRequest => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: WebSocketResponse => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: WebSocketFrame => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: CachedResource => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: Initiator => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: CookiePartitionKey => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: Cookie => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: SetCookieBlockedReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: CookieBlockedReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: CookieExemptionReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: BlockedSetCookieWithReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ExemptedSetCookieWithReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: AssociatedCookie => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: CookieParam => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: AuthChallenge => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: AuthChallengeResponse => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: InterceptionStage => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: RequestPattern => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: SignedExchangeSignature => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: SignedExchangeHeader => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: SignedExchangeErrorField => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: SignedExchangeError => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: SignedExchangeInfo => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ContentEncoding => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: NetworkConditions => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: BlockPattern => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: DirectSocketDnsQueryType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: DirectTcpSocketOptions => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: DirectUdpSocketOptions => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: DirectUdpMessage => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: LocalNetworkAccessRequestPolicy => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: IpAddressSpace => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ConnectTiming => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ClientSecurityState => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: CrossOriginOpenerPolicyValue => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: CrossOriginOpenerPolicyStatus => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: CrossOriginEmbedderPolicyValue => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: CrossOriginEmbedderPolicyStatus => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ContentSecurityPolicySource => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ContentSecurityPolicyStatus => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: SecurityIsolationStatus => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ReportStatus => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ReportId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ReportingApiReport => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ReportingApiEndpoint => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: DeviceBoundSessionKey => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: DeviceBoundSessionWithUsage => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: DeviceBoundSessionCookieCraving => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: DeviceBoundSessionUrlRule => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: DeviceBoundSessionInclusionRules => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: DeviceBoundSession => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: DeviceBoundSessionEventId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: DeviceBoundSessionFetchResult => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: DeviceBoundSessionFailedRequest => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: CreationEventDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: RefreshEventDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: TerminationEventDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: ChallengeEventDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: LoadNetworkResourcePageResult => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: types :: LoadNetworkResourceOptions => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: network :: commands :: NetworkCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: SetAcceptedEncodings => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: ClearAcceptedEncodingsOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: ClearBrowserCache => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: ClearBrowserCookies => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: DeleteCookies => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: EmulateNetworkConditionsByRule => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: OverrideNetworkState => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: ConfigureDurableMessages => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: GetCertificate => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: GetCookies => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: GetResponseBody => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: GetRequestPostData => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: GetResponseBodyForInterception => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: TakeResponseBodyForInterceptionAsStream => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: ReplayXhr => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: SearchInResponseBody => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: SetBlockedUrLs => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: SetBypassServiceWorker => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: SetCacheDisabled => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: SetCookie => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: SetCookies => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: SetExtraHttpHeaders => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: SetAttachDebugStack => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: SetUserAgentOverride => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: StreamResourceContent => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: GetSecurityIsolationStatus => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: EnableReportingApi => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: EnableDeviceBoundSessions => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: FetchSchemefulSite => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: LoadNetworkResource => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: commands :: SetCookieControls => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: network :: events :: NetworkEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: DataReceived => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: EventSourceMessageReceived => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: LoadingFailed => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: LoadingFinished => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: RequestServedFromCache => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: RequestWillBeSent => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: ResourceChangedPriority => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: SignedExchangeReceived => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: ResponseReceived => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: WebSocketClosed => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: WebSocketCreated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: WebSocketFrameError => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: WebSocketFrameReceived => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: WebSocketFrameSent => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: WebSocketHandshakeResponseReceived => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: WebSocketWillSendHandshakeRequest => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: WebTransportCreated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: WebTransportConnectionEstablished => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: WebTransportClosed => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: DirectTcpSocketCreated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: DirectTcpSocketOpened => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: DirectTcpSocketAborted => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: DirectTcpSocketClosed => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: DirectTcpSocketChunkSent => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: DirectTcpSocketChunkReceived => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: DirectUdpSocketJoinedMulticastGroup => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: DirectUdpSocketLeftMulticastGroup => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: DirectUdpSocketCreated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: DirectUdpSocketOpened => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: DirectUdpSocketAborted => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: DirectUdpSocketClosed => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: DirectUdpSocketChunkSent => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: DirectUdpSocketChunkReceived => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: RequestWillBeSentExtraInfo => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: ResponseReceivedExtraInfo => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: ResponseReceivedEarlyHints => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: TrustTokenOperationDone => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: PolicyUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: ReportingApiReportAdded => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: ReportingApiReportUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: ReportingApiEndpointsChangedForOrigin => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: DeviceBoundSessionsAdded => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: network :: events :: DeviceBoundSessionEventOccurred => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: overlay :: types :: OverlayTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: SourceOrderConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: GridHighlightConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: FlexContainerHighlightConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: FlexItemHighlightConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: LineStyle => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: BoxStyle => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: ContrastAlgorithm => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: HighlightConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: ColorFormat => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: GridNodeHighlightConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: FlexNodeHighlightConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: ScrollSnapContainerHighlightConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: ScrollSnapHighlightConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: HingeConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: WindowControlsOverlayConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: ContainerQueryHighlightConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: ContainerQueryContainerHighlightConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: IsolatedElementHighlightConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: IsolationModeHighlightConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: InspectMode => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: types :: InspectedElementAnchorConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: overlay :: commands :: OverlayCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: GetHighlightObjectForTest => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: GetGridHighlightObjectsForTest => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: GetSourceOrderHighlightObjectForTest => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: HideHighlight => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: HighlightNode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: HighlightQuad => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: HighlightRect => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: HighlightSourceOrder => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: SetInspectMode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: SetShowAdHighlights => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: SetPausedInDebuggerMessage => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: SetShowDebugBorders => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: SetShowFpsCounter => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: SetShowGridOverlays => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: SetShowFlexOverlays => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: SetShowScrollSnapOverlays => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: SetShowContainerQueryOverlays => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: SetShowInspectedElementAnchor => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: SetShowPaintRects => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: SetShowLayoutShiftRegions => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: SetShowScrollBottleneckRects => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: SetShowViewportSizeOnResize => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: SetShowHinge => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: SetShowIsolatedElements => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: commands :: SetShowWindowControlsOverlay => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: overlay :: events :: OverlayEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: overlay :: events :: InspectNodeRequested => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: overlay :: events :: NodeHighlightRequested => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: overlay :: events :: ScreenshotRequested => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: overlay :: events :: InspectPanelShowRequested => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: overlay :: events :: InspectedElementWindowRestored => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: overlay :: events :: InspectModeCanceled => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: pwa :: types :: PwaTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: pwa :: types :: FileHandlerAccept => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: pwa :: types :: FileHandler => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: pwa :: types :: DisplayMode => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: pwa :: commands :: PwaCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: pwa :: commands :: GetOsAppState => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: pwa :: commands :: Install => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: pwa :: commands :: Uninstall => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: pwa :: commands :: Launch => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: pwa :: commands :: LaunchFilesInApp => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: pwa :: commands :: OpenCurrentPageInApp => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: pwa :: commands :: ChangeAppUserSettings => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: types :: PageTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: FrameId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: AdFrameType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: AdFrameExplanation => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: AdFrameStatus => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: AdScriptId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: AdScriptAncestry => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: SecureContextType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: CrossOriginIsolatedContextType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: GatedApiFeatures => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: PermissionsPolicyFeature => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: PermissionsPolicyBlockReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: PermissionsPolicyBlockLocator => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: PermissionsPolicyFeatureState => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: OriginTrialTokenStatus => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: OriginTrialStatus => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: OriginTrialUsageRestriction => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: OriginTrialToken => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: OriginTrialTokenWithStatus => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: OriginTrial => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: SecurityOriginDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: Frame => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: FrameResource => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: FrameResourceTree => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: FrameTree => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: ScriptIdentifier => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: TransitionType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: NavigationEntry => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: ScreencastFrameMetadata => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: DialogType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: AppManifestError => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: AppManifestParsedProperties => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: LayoutViewport => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: VisualViewport => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: Viewport => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: FontFamilies => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: ScriptFontFamilies => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: FontSizes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: ClientNavigationReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: ClientNavigationDisposition => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: InstallabilityErrorArgument => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: InstallabilityError => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: ReferrerPolicy => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: CompilationCacheParams => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: FileFilter => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: FileHandler => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: ImageResource => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: LaunchHandler => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: ProtocolHandler => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: RelatedApplication => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: ScopeExtension => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: Screenshot => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: ShareTarget => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: Shortcut => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: WebAppManifest => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: NavigationType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: BackForwardCacheNotRestoredReason => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: BackForwardCacheNotRestoredReasonType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: BackForwardCacheBlockingDetails => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: BackForwardCacheNotRestoredExplanation => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: types :: BackForwardCacheNotRestoredExplanationTree => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: page :: commands :: PageCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: AddScriptToEvaluateOnNewDocument => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: BringToFront => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: CaptureScreenshot => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: CaptureSnapshot => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: CreateIsolatedWorld => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: GetAppManifest => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: GetInstallabilityErrors => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: GetAppId => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: GetAdScriptAncestry => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: GetFrameTree => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: GetLayoutMetrics => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: GetNavigationHistory => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: ResetNavigationHistory => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: GetResourceContent => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: GetResourceTree => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: HandleJavaScriptDialog => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: Navigate => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: NavigateToHistoryEntry => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: PrintToPdf => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: Reload => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: RemoveScriptToEvaluateOnNewDocument => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: ScreencastFrameAck => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: SearchInResource => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: SetAdBlockingEnabled => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: SetBypassCsp => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: GetPermissionsPolicyState => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: GetOriginTrials => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: SetFontFamilies => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: SetFontSizes => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: SetDocumentContent => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: SetLifecycleEventsEnabled => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: StartScreencast => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: StopLoading => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: Crash => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: Close => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: SetWebLifecycleState => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: StopScreencast => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: ProduceCompilationCache => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: AddCompilationCache => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: ClearCompilationCache => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: SetSpcTransactionMode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: SetRphRegistrationMode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: GenerateTestReport => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: WaitForDebugger => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: SetInterceptFileChooserDialog => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: SetPrerenderingAllowed => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: commands :: GetAnnotatedPageContent => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: page :: events :: PageEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: DomContentEventFired => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: FileChooserOpened => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: FrameAttached => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: FrameDetached => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: FrameSubtreeWillBeDetached => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: FrameNavigated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: DocumentOpened => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: FrameResized => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: FrameStartedNavigating => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: FrameRequestedNavigation => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: FrameStartedLoading => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: FrameStoppedLoading => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: InterstitialHidden => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: InterstitialShown => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: JavascriptDialogClosed => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: JavascriptDialogOpening => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: LifecycleEvent => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: BackForwardCacheNotUsed => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: LoadEventFired => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: NavigatedWithinDocument => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: ScreencastFrame => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: ScreencastVisibilityChanged => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: WindowOpen => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: page :: events :: CompilationCacheProduced => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: performance :: types :: PerformanceTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: performance :: types :: Metric => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: performance :: commands :: PerformanceCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: performance :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: performance :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: performance :: commands :: GetMetrics => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: performance :: events :: PerformanceEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: performance :: events :: Metrics => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: performance_timeline :: types :: PerformanceTimelineTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: performance_timeline :: types :: LargestContentfulPaint => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: performance_timeline :: types :: LayoutShiftAttribution => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: performance_timeline :: types :: LayoutShift => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: performance_timeline :: types :: TimelineEvent => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: performance_timeline :: commands :: PerformanceTimelineCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: performance_timeline :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: performance_timeline :: events :: PerformanceTimelineEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: performance_timeline :: events :: TimelineEventAdded => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: preload :: types :: PreloadTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: preload :: types :: RuleSetId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: preload :: types :: RuleSet => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: preload :: types :: RuleSetErrorType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: preload :: types :: SpeculationAction => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: preload :: types :: SpeculationTargetHint => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: preload :: types :: PreloadingAttemptKey => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: preload :: types :: PreloadingAttemptSource => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: preload :: types :: PreloadPipelineId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: preload :: types :: PrerenderFinalStatus => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: preload :: types :: PreloadingStatus => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: preload :: types :: PrefetchStatus => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: preload :: types :: PrerenderMismatchedHeaders => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: preload :: commands :: PreloadCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: preload :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: preload :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: preload :: events :: PreloadEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: preload :: events :: RuleSetUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: preload :: events :: RuleSetRemoved => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: preload :: events :: PreloadEnabledStateUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: preload :: events :: PrefetchStatusUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: preload :: events :: PrerenderStatusUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: preload :: events :: PreloadingAttemptSourcesUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: security :: types :: SecurityTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: security :: types :: CertificateId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: security :: types :: MixedContentType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: security :: types :: SecurityState => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: security :: types :: CertificateSecurityState => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: security :: types :: SafetyTipStatus => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: security :: types :: SafetyTipInfo => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: security :: types :: VisibleSecurityState => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: security :: types :: SecurityStateExplanation => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: security :: types :: CertificateErrorAction => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: security :: commands :: SecurityCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: security :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: security :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: security :: commands :: SetIgnoreCertificateErrors => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: security :: events :: SecurityEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: security :: events :: VisibleSecurityStateChanged => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: service_worker :: types :: ServiceWorkerTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: service_worker :: types :: RegistrationId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: service_worker :: types :: ServiceWorkerRegistration => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: service_worker :: types :: ServiceWorkerVersionRunningStatus => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: service_worker :: types :: ServiceWorkerVersionStatus => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: service_worker :: types :: ServiceWorkerVersion => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: service_worker :: types :: ServiceWorkerErrorMessage => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: service_worker :: commands :: ServiceWorkerCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: service_worker :: commands :: DeliverPushMessage => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: service_worker :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: service_worker :: commands :: DispatchSyncEvent => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: service_worker :: commands :: DispatchPeriodicSyncEvent => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: service_worker :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: service_worker :: commands :: SetForceUpdateOnPageLoad => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: service_worker :: commands :: SkipWaiting => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: service_worker :: commands :: StartWorker => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: service_worker :: commands :: StopAllWorkers => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: service_worker :: commands :: StopWorker => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: service_worker :: commands :: Unregister => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: service_worker :: commands :: UpdateRegistration => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: service_worker :: events :: ServiceWorkerEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: service_worker :: events :: WorkerErrorReported => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: service_worker :: events :: WorkerRegistrationUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: service_worker :: events :: WorkerVersionUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: storage :: types :: StorageTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: SerializedStorageKey => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: StorageType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: UsageForType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: TrustTokens => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: InterestGroupAuctionId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: InterestGroupAccessType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: InterestGroupAuctionEventType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: InterestGroupAuctionFetchType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: SharedStorageAccessScope => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: SharedStorageAccessMethod => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: SharedStorageEntry => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: SharedStorageMetadata => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: SharedStoragePrivateAggregationConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: SharedStorageReportingMetadata => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: SharedStorageUrlWithMetadata => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: SharedStorageAccessParams => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: StorageBucketsDurability => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: StorageBucket => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: StorageBucketInfo => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingSourceType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: UnsignedInt64AsBase10 => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: UnsignedInt128AsBase16 => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: SignedInt64AsBase10 => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingFilterDataEntry => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingFilterConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingFilterPair => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingAggregationKeysEntry => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingEventReportWindows => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingTriggerDataMatching => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingAggregatableDebugReportingData => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingAggregatableDebugReportingConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionScopesData => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingNamedBudgetDef => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingSourceRegistration => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingSourceRegistrationResult => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingSourceRegistrationTimeConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingAggregatableValueDictEntry => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingAggregatableValueEntry => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingEventTriggerData => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingAggregatableTriggerData => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingAggregatableDedupKey => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingNamedBudgetCandidate => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingTriggerRegistration => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingEventLevelResult => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingAggregatableResult => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: AttributionReportingReportResult => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: types :: RelatedWebsiteSet => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: storage :: commands :: StorageCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: GetStorageKey => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: ClearDataForOrigin => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: ClearDataForStorageKey => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: GetCookies => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: SetCookies => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: ClearCookies => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: GetUsageAndQuota => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: OverrideQuotaForOrigin => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: TrackCacheStorageForOrigin => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: TrackCacheStorageForStorageKey => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: TrackIndexedDbForOrigin => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: TrackIndexedDbForStorageKey => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: UntrackCacheStorageForOrigin => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: UntrackCacheStorageForStorageKey => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: UntrackIndexedDbForOrigin => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: UntrackIndexedDbForStorageKey => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: GetTrustTokens => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: ClearTrustTokens => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: GetInterestGroupDetails => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: SetInterestGroupTracking => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: SetInterestGroupAuctionTracking => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: GetSharedStorageMetadata => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: GetSharedStorageEntries => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: SetSharedStorageEntry => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: DeleteSharedStorageEntry => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: ClearSharedStorageEntries => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: ResetSharedStorageBudget => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: SetSharedStorageTracking => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: SetStorageBucketTracking => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: DeleteStorageBucket => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: RunBounceTrackingMitigations => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: SetAttributionReportingLocalTestingMode => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: SetAttributionReportingTracking => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: SendPendingAttributionReports => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: GetRelatedWebsiteSets => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: GetAffectedUrlsForThirdPartyCookieMetadata => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: commands :: SetProtectedAudienceKAnonymity => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: storage :: events :: StorageEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: storage :: events :: CacheStorageContentUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: storage :: events :: CacheStorageListUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: storage :: events :: IndexedDbContentUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: storage :: events :: IndexedDbListUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: storage :: events :: InterestGroupAccessed => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: storage :: events :: InterestGroupAuctionEventOccurred => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: storage :: events :: InterestGroupAuctionNetworkRequestCreated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: storage :: events :: SharedStorageAccessed => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: storage :: events :: SharedStorageWorkletOperationExecutionFinished => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: storage :: events :: StorageBucketCreatedOrUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: storage :: events :: StorageBucketDeleted => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: storage :: events :: AttributionReportingSourceRegistered => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: storage :: events :: AttributionReportingTriggerRegistered => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: storage :: events :: AttributionReportingReportSent => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: storage :: events :: AttributionReportingVerboseDebugReportSent => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: system_info :: types :: SystemInfoTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: system_info :: types :: GpuDevice => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: system_info :: types :: Size => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: system_info :: types :: VideoDecodeAcceleratorCapability => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: system_info :: types :: VideoEncodeAcceleratorCapability => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: system_info :: types :: SubsamplingFormat => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: system_info :: types :: ImageType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: system_info :: types :: GpuInfo => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: system_info :: types :: ProcessInfo => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: system_info :: commands :: SystemInfoCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: system_info :: commands :: GetInfo => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: system_info :: commands :: GetFeatureState => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: system_info :: commands :: GetProcessInfo => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: types :: TargetTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: target :: types :: TargetId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: target :: types :: SessionId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: target :: types :: TargetInfo => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: target :: types :: FilterEntry => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: target :: types :: TargetFilter => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: target :: types :: RemoteLocation => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: target :: types :: WindowState => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: target :: commands :: TargetCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: commands :: ActivateTarget => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: commands :: AttachToTarget => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: commands :: AttachToBrowserTarget => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: commands :: CloseTarget => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: commands :: ExposeDevToolsProtocol => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: commands :: CreateBrowserContext => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: commands :: GetBrowserContexts => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: commands :: CreateTarget => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: commands :: DetachFromTarget => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: commands :: DisposeBrowserContext => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: commands :: GetTargetInfo => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: commands :: GetTargets => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: commands :: SetAutoAttach => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: commands :: AutoAttachRelated => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: commands :: SetDiscoverTargets => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: commands :: SetRemoteLocations => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: commands :: GetDevToolsTarget => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: commands :: OpenDevTools => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: target :: events :: TargetEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: target :: events :: AttachedToTarget => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: target :: events :: DetachedFromTarget => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: target :: events :: ReceivedMessageFromTarget => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: target :: events :: TargetCreated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: target :: events :: TargetDestroyed => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: target :: events :: TargetCrashed => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: target :: events :: TargetInfoChanged => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: tethering :: commands :: TetheringCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: tethering :: commands :: Bind => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: tethering :: commands :: Unbind => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: tethering :: events :: TetheringEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: tethering :: events :: Accepted => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: tracing :: types :: TracingTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: tracing :: types :: MemoryDumpConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: tracing :: types :: TraceConfig => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: tracing :: types :: StreamFormat => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: tracing :: types :: StreamCompression => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: tracing :: types :: MemoryDumpLevelOfDetail => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: tracing :: types :: TracingBackend => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: tracing :: commands :: TracingCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: tracing :: commands :: End => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: tracing :: commands :: GetCategories => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: tracing :: commands :: GetTrackEventDescriptor => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: tracing :: commands :: RecordClockSyncMarker => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: tracing :: commands :: RequestMemoryDump => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: tracing :: commands :: Start => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: tracing :: events :: TracingEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: tracing :: events :: BufferUsage => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: tracing :: events :: DataCollected => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: tracing :: events :: TracingComplete => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_audio :: types :: WebAudioTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_audio :: types :: GraphObjectId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_audio :: types :: ContextType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_audio :: types :: ContextState => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_audio :: types :: NodeType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_audio :: types :: ChannelCountMode => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_audio :: types :: ChannelInterpretation => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_audio :: types :: ParamType => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_audio :: types :: AutomationRate => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_audio :: types :: ContextRealtimeData => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_audio :: types :: BaseAudioContext => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_audio :: types :: AudioListener => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_audio :: types :: AudioNode => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_audio :: types :: AudioParam => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_audio :: commands :: WebAudioCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: web_audio :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: web_audio :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: web_audio :: commands :: GetRealtimeData => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: web_audio :: events :: WebAudioEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_audio :: events :: ContextCreated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_audio :: events :: ContextWillBeDestroyed => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_audio :: events :: ContextChanged => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_audio :: events :: AudioListenerCreated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_audio :: events :: AudioListenerWillBeDestroyed => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_audio :: events :: AudioNodeCreated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_audio :: events :: AudioNodeWillBeDestroyed => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_audio :: events :: AudioParamCreated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_audio :: events :: AudioParamWillBeDestroyed => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_audio :: events :: NodesConnected => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_audio :: events :: NodesDisconnected => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_audio :: events :: NodeParamConnected => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_audio :: events :: NodeParamDisconnected => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_authn :: types :: WebAuthnTypes => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_authn :: types :: AuthenticatorId => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_authn :: types :: AuthenticatorProtocol => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_authn :: types :: Ctap2Version => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_authn :: types :: AuthenticatorTransport => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_authn :: types :: VirtualAuthenticatorOptions => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_authn :: types :: Credential => browser_protocol :: BrowserProtocolTypes => Type , browser_protocol :: web_authn :: commands :: WebAuthnCommands => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: web_authn :: commands :: Enable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: web_authn :: commands :: Disable => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: web_authn :: commands :: AddVirtualAuthenticator => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: web_authn :: commands :: SetResponseOverrideBits => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: web_authn :: commands :: RemoveVirtualAuthenticator => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: web_authn :: commands :: AddCredential => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: web_authn :: commands :: GetCredential => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: web_authn :: commands :: GetCredentials => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: web_authn :: commands :: RemoveCredential => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: web_authn :: commands :: ClearCredentials => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: web_authn :: commands :: SetUserVerified => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: web_authn :: commands :: SetAutomaticPresenceSimulation => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: web_authn :: commands :: SetCredentialProperties => browser_protocol :: BrowserProtocolCommands => Command , browser_protocol :: web_authn :: events :: WebAuthnEvents => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_authn :: events :: CredentialAdded => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_authn :: events :: CredentialDeleted => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_authn :: events :: CredentialUpdated => browser_protocol :: BrowserProtocolEvents => Event , browser_protocol :: web_authn :: events :: CredentialAsserted => browser_protocol :: BrowserProtocolEvents => Event);
38#[derive(Debug, PartialEq, Clone)]
39pub struct EventMessage {
40    pub method: String,
41    pub session_id: Option<String>,
42    pub params: Event,
43}