Skip to main content

Command

Trait Command 

Source
pub trait Command: Serialize {
    type Response: DeserializeOwned;

    const METHOD: &'static str;

    // Provided method
    fn send(
        self,
        cdp: &CDP,
        session_id: Option<&str>,
    ) -> impl Future<Output = Result<Self::Response, CdpError>>
       where Self: Sized { ... }
}
Expand description

Trait for CDP commands

Required Associated Constants§

Source

const METHOD: &'static str

CDP method name (e.g., “Page.navigate”)

Required Associated Types§

Source

type Response: DeserializeOwned

Response type for this command

Provided Methods§

Source

fn send( self, cdp: &CDP, session_id: Option<&str>, ) -> impl Future<Output = Result<Self::Response, CdpError>>
where Self: Sized,

Send this command using fluent API

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl Command for cdpkit::cdp::accessibility::Disable

Source§

const METHOD: &'static str = "Accessibility.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::accessibility::Enable

Source§

const METHOD: &'static str = "Accessibility.enable"

Source§

type Response = ()

Source§

impl Command for GetAxNodeAndAncestors

Source§

const METHOD: &'static str = "Accessibility.getAXNodeAndAncestors"

Source§

type Response = GetAxNodeAndAncestorsResult

Source§

impl Command for GetChildAxNodes

Source§

const METHOD: &'static str = "Accessibility.getChildAXNodes"

Source§

type Response = GetChildAxNodesResult

Source§

impl Command for GetFullAxTree

Source§

const METHOD: &'static str = "Accessibility.getFullAXTree"

Source§

type Response = GetFullAxTreeResult

Source§

impl Command for GetPartialAxTree

Source§

const METHOD: &'static str = "Accessibility.getPartialAXTree"

Source§

type Response = GetPartialAxTreeResult

Source§

impl Command for GetRootAxNode

Source§

const METHOD: &'static str = "Accessibility.getRootAXNode"

Source§

type Response = GetRootAxNodeResult

Source§

impl Command for QueryAxTree

Source§

const METHOD: &'static str = "Accessibility.queryAXTree"

Source§

type Response = QueryAxTreeResult

Source§

impl Command for cdpkit::cdp::animation::Disable

Source§

const METHOD: &'static str = "Animation.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::animation::Enable

Source§

const METHOD: &'static str = "Animation.enable"

Source§

type Response = ()

Source§

impl Command for GetCurrentTime

Source§

const METHOD: &'static str = "Animation.getCurrentTime"

Source§

type Response = GetCurrentTimeResult

Source§

impl Command for GetPlaybackRate

Source§

const METHOD: &'static str = "Animation.getPlaybackRate"

Source§

type Response = GetPlaybackRateResult

Source§

impl Command for ReleaseAnimations

Source§

const METHOD: &'static str = "Animation.releaseAnimations"

Source§

type Response = ()

Source§

impl Command for ResolveAnimation

Source§

const METHOD: &'static str = "Animation.resolveAnimation"

Source§

type Response = ResolveAnimationResult

Source§

impl Command for SeekAnimations

Source§

const METHOD: &'static str = "Animation.seekAnimations"

Source§

type Response = ()

Source§

impl Command for SetPaused

Source§

const METHOD: &'static str = "Animation.setPaused"

Source§

type Response = ()

Source§

impl Command for SetPlaybackRate

Source§

const METHOD: &'static str = "Animation.setPlaybackRate"

Source§

type Response = ()

Source§

impl Command for SetTiming

Source§

const METHOD: &'static str = "Animation.setTiming"

Source§

type Response = ()

Source§

impl Command for CheckContrast

Source§

const METHOD: &'static str = "Audits.checkContrast"

Source§

type Response = ()

Source§

impl Command for CheckFormsIssues

Source§

const METHOD: &'static str = "Audits.checkFormsIssues"

Source§

type Response = CheckFormsIssuesResult

Source§

impl Command for cdpkit::cdp::audits::Disable

Source§

const METHOD: &'static str = "Audits.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::audits::Enable

Source§

const METHOD: &'static str = "Audits.enable"

Source§

type Response = ()

Source§

impl Command for GetEncodedResponse

Source§

const METHOD: &'static str = "Audits.getEncodedResponse"

Source§

type Response = GetEncodedResponseResult

Source§

impl Command for cdpkit::cdp::autofill::Disable

Source§

const METHOD: &'static str = "Autofill.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::autofill::Enable

Source§

const METHOD: &'static str = "Autofill.enable"

Source§

type Response = ()

Source§

impl Command for SetAddresses

Source§

const METHOD: &'static str = "Autofill.setAddresses"

Source§

type Response = ()

Source§

impl Command for Trigger

Source§

const METHOD: &'static str = "Autofill.trigger"

Source§

type Response = ()

Source§

impl Command for ClearEvents

Source§

const METHOD: &'static str = "BackgroundService.clearEvents"

Source§

type Response = ()

Source§

impl Command for SetRecording

Source§

const METHOD: &'static str = "BackgroundService.setRecording"

Source§

type Response = ()

Source§

impl Command for StartObserving

Source§

const METHOD: &'static str = "BackgroundService.startObserving"

Source§

type Response = ()

Source§

impl Command for StopObserving

Source§

const METHOD: &'static str = "BackgroundService.stopObserving"

Source§

type Response = ()

Source§

impl Command for AddCharacteristic

Source§

const METHOD: &'static str = "BluetoothEmulation.addCharacteristic"

Source§

type Response = AddCharacteristicResult

Source§

impl Command for AddDescriptor

Source§

const METHOD: &'static str = "BluetoothEmulation.addDescriptor"

Source§

type Response = AddDescriptorResult

Source§

impl Command for AddService

Source§

const METHOD: &'static str = "BluetoothEmulation.addService"

Source§

type Response = AddServiceResult

Source§

impl Command for cdpkit::cdp::bluetooth_emulation::Disable

Source§

const METHOD: &'static str = "BluetoothEmulation.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::bluetooth_emulation::Enable

Source§

const METHOD: &'static str = "BluetoothEmulation.enable"

Source§

type Response = ()

Source§

impl Command for RemoveCharacteristic

Source§

const METHOD: &'static str = "BluetoothEmulation.removeCharacteristic"

Source§

type Response = ()

Source§

impl Command for RemoveDescriptor

Source§

const METHOD: &'static str = "BluetoothEmulation.removeDescriptor"

Source§

type Response = ()

Source§

impl Command for RemoveService

Source§

const METHOD: &'static str = "BluetoothEmulation.removeService"

Source§

type Response = ()

Source§

impl Command for SetSimulatedCentralState

Source§

const METHOD: &'static str = "BluetoothEmulation.setSimulatedCentralState"

Source§

type Response = ()

Source§

impl Command for SimulateAdvertisement

Source§

const METHOD: &'static str = "BluetoothEmulation.simulateAdvertisement"

Source§

type Response = ()

Source§

impl Command for SimulateCharacteristicOperationResponse

Source§

const METHOD: &'static str = "BluetoothEmulation.simulateCharacteristicOperationResponse"

Source§

type Response = ()

Source§

impl Command for SimulateDescriptorOperationResponse

Source§

const METHOD: &'static str = "BluetoothEmulation.simulateDescriptorOperationResponse"

Source§

type Response = ()

Source§

impl Command for SimulateGattDisconnection

Source§

const METHOD: &'static str = "BluetoothEmulation.simulateGATTDisconnection"

Source§

type Response = ()

Source§

impl Command for SimulateGattOperationResponse

Source§

const METHOD: &'static str = "BluetoothEmulation.simulateGATTOperationResponse"

Source§

type Response = ()

Source§

impl Command for SimulatePreconnectedPeripheral

Source§

const METHOD: &'static str = "BluetoothEmulation.simulatePreconnectedPeripheral"

Source§

type Response = ()

Source§

impl Command for AddPrivacySandboxCoordinatorKeyConfig

Source§

const METHOD: &'static str = "Browser.addPrivacySandboxCoordinatorKeyConfig"

Source§

type Response = ()

Source§

impl Command for AddPrivacySandboxEnrollmentOverride

Source§

const METHOD: &'static str = "Browser.addPrivacySandboxEnrollmentOverride"

Source§

type Response = ()

Source§

impl Command for CancelDownload

Source§

const METHOD: &'static str = "Browser.cancelDownload"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::browser::Close

Source§

const METHOD: &'static str = "Browser.close"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::browser::Crash

Source§

const METHOD: &'static str = "Browser.crash"

Source§

type Response = ()

Source§

impl Command for CrashGpuProcess

Source§

const METHOD: &'static str = "Browser.crashGpuProcess"

Source§

type Response = ()

Source§

impl Command for ExecuteBrowserCommand

Source§

const METHOD: &'static str = "Browser.executeBrowserCommand"

Source§

type Response = ()

Source§

impl Command for GetBrowserCommandLine

Source§

const METHOD: &'static str = "Browser.getBrowserCommandLine"

Source§

type Response = GetBrowserCommandLineResult

Source§

impl Command for GetHistogram

Source§

const METHOD: &'static str = "Browser.getHistogram"

Source§

type Response = GetHistogramResult

Source§

impl Command for GetHistograms

Source§

const METHOD: &'static str = "Browser.getHistograms"

Source§

type Response = GetHistogramsResult

Source§

impl Command for GetVersion

Source§

const METHOD: &'static str = "Browser.getVersion"

Source§

type Response = GetVersionResult

Source§

impl Command for GetWindowBounds

Source§

const METHOD: &'static str = "Browser.getWindowBounds"

Source§

type Response = GetWindowBoundsResult

Source§

impl Command for GetWindowForTarget

Source§

const METHOD: &'static str = "Browser.getWindowForTarget"

Source§

type Response = GetWindowForTargetResult

Source§

impl Command for GrantPermissions

Source§

const METHOD: &'static str = "Browser.grantPermissions"

Source§

type Response = ()

Source§

impl Command for ResetPermissions

Source§

const METHOD: &'static str = "Browser.resetPermissions"

Source§

type Response = ()

Source§

impl Command for SetContentsSize

Source§

const METHOD: &'static str = "Browser.setContentsSize"

Source§

type Response = ()

Source§

impl Command for SetDockTile

Source§

const METHOD: &'static str = "Browser.setDockTile"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::browser::SetDownloadBehavior

Source§

const METHOD: &'static str = "Browser.setDownloadBehavior"

Source§

type Response = ()

Source§

impl Command for SetPermission

Source§

const METHOD: &'static str = "Browser.setPermission"

Source§

type Response = ()

Source§

impl Command for SetWindowBounds

Source§

const METHOD: &'static str = "Browser.setWindowBounds"

Source§

type Response = ()

Source§

impl Command for DeleteCache

Source§

const METHOD: &'static str = "CacheStorage.deleteCache"

Source§

type Response = ()

Source§

impl Command for DeleteEntry

Source§

const METHOD: &'static str = "CacheStorage.deleteEntry"

Source§

type Response = ()

Source§

impl Command for RequestCacheNames

Source§

const METHOD: &'static str = "CacheStorage.requestCacheNames"

Source§

type Response = RequestCacheNamesResult

Source§

impl Command for RequestCachedResponse

Source§

const METHOD: &'static str = "CacheStorage.requestCachedResponse"

Source§

type Response = RequestCachedResponseResult

Source§

impl Command for RequestEntries

Source§

const METHOD: &'static str = "CacheStorage.requestEntries"

Source§

type Response = RequestEntriesResult

Source§

impl Command for cdpkit::cdp::cast::Disable

Source§

const METHOD: &'static str = "Cast.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::cast::Enable

Source§

const METHOD: &'static str = "Cast.enable"

Source§

type Response = ()

Source§

impl Command for SetSinkToUse

Source§

const METHOD: &'static str = "Cast.setSinkToUse"

Source§

type Response = ()

Source§

impl Command for StartDesktopMirroring

Source§

const METHOD: &'static str = "Cast.startDesktopMirroring"

Source§

type Response = ()

Source§

impl Command for StartTabMirroring

Source§

const METHOD: &'static str = "Cast.startTabMirroring"

Source§

type Response = ()

Source§

impl Command for StopCasting

Source§

const METHOD: &'static str = "Cast.stopCasting"

Source§

type Response = ()

Source§

impl Command for ClearMessages

Source§

const METHOD: &'static str = "Console.clearMessages"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::console::Disable

Source§

const METHOD: &'static str = "Console.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::console::Enable

Source§

const METHOD: &'static str = "Console.enable"

Source§

type Response = ()

Source§

impl Command for AddRule

Source§

const METHOD: &'static str = "CSS.addRule"

Source§

type Response = AddRuleResult

Source§

impl Command for CollectClassNames

Source§

const METHOD: &'static str = "CSS.collectClassNames"

Source§

type Response = CollectClassNamesResult

Source§

impl Command for CreateStyleSheet

Source§

const METHOD: &'static str = "CSS.createStyleSheet"

Source§

type Response = CreateStyleSheetResult

Source§

impl Command for cdpkit::cdp::css::Disable

Source§

const METHOD: &'static str = "CSS.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::css::Enable

Source§

const METHOD: &'static str = "CSS.enable"

Source§

type Response = ()

Source§

impl Command for ForcePseudoState

Source§

const METHOD: &'static str = "CSS.forcePseudoState"

Source§

type Response = ()

Source§

impl Command for ForceStartingStyle

Source§

const METHOD: &'static str = "CSS.forceStartingStyle"

Source§

type Response = ()

Source§

impl Command for GetAnimatedStylesForNode

Source§

const METHOD: &'static str = "CSS.getAnimatedStylesForNode"

Source§

type Response = GetAnimatedStylesForNodeResult

Source§

impl Command for GetBackgroundColors

Source§

const METHOD: &'static str = "CSS.getBackgroundColors"

Source§

type Response = GetBackgroundColorsResult

Source§

impl Command for GetComputedStyleForNode

Source§

const METHOD: &'static str = "CSS.getComputedStyleForNode"

Source§

type Response = GetComputedStyleForNodeResult

Source§

impl Command for GetEnvironmentVariables

Source§

const METHOD: &'static str = "CSS.getEnvironmentVariables"

Source§

type Response = GetEnvironmentVariablesResult

Source§

impl Command for GetInlineStylesForNode

Source§

const METHOD: &'static str = "CSS.getInlineStylesForNode"

Source§

type Response = GetInlineStylesForNodeResult

Source§

impl Command for GetLayersForNode

Source§

const METHOD: &'static str = "CSS.getLayersForNode"

Source§

type Response = GetLayersForNodeResult

Source§

impl Command for GetLocationForSelector

Source§

const METHOD: &'static str = "CSS.getLocationForSelector"

Source§

type Response = GetLocationForSelectorResult

Source§

impl Command for GetLonghandProperties

Source§

const METHOD: &'static str = "CSS.getLonghandProperties"

Source§

type Response = GetLonghandPropertiesResult

Source§

impl Command for GetMatchedStylesForNode

Source§

const METHOD: &'static str = "CSS.getMatchedStylesForNode"

Source§

type Response = GetMatchedStylesForNodeResult

Source§

impl Command for GetMediaQueries

Source§

const METHOD: &'static str = "CSS.getMediaQueries"

Source§

type Response = GetMediaQueriesResult

Source§

impl Command for GetPlatformFontsForNode

Source§

const METHOD: &'static str = "CSS.getPlatformFontsForNode"

Source§

type Response = GetPlatformFontsForNodeResult

Source§

impl Command for GetStyleSheetText

Source§

const METHOD: &'static str = "CSS.getStyleSheetText"

Source§

type Response = GetStyleSheetTextResult

Source§

impl Command for ResolveValues

Source§

const METHOD: &'static str = "CSS.resolveValues"

Source§

type Response = ResolveValuesResult

Source§

impl Command for SetContainerQueryText

Source§

const METHOD: &'static str = "CSS.setContainerQueryText"

Source§

type Response = SetContainerQueryTextResult

Source§

impl Command for SetEffectivePropertyValueForNode

Source§

const METHOD: &'static str = "CSS.setEffectivePropertyValueForNode"

Source§

type Response = ()

Source§

impl Command for SetKeyframeKey

Source§

const METHOD: &'static str = "CSS.setKeyframeKey"

Source§

type Response = SetKeyframeKeyResult

Source§

impl Command for SetLocalFontsEnabled

Source§

const METHOD: &'static str = "CSS.setLocalFontsEnabled"

Source§

type Response = ()

Source§

impl Command for SetMediaText

Source§

const METHOD: &'static str = "CSS.setMediaText"

Source§

type Response = SetMediaTextResult

Source§

impl Command for SetPropertyRulePropertyName

Source§

const METHOD: &'static str = "CSS.setPropertyRulePropertyName"

Source§

type Response = SetPropertyRulePropertyNameResult

Source§

impl Command for SetRuleSelector

Source§

const METHOD: &'static str = "CSS.setRuleSelector"

Source§

type Response = SetRuleSelectorResult

Source§

impl Command for SetScopeText

Source§

const METHOD: &'static str = "CSS.setScopeText"

Source§

type Response = SetScopeTextResult

Source§

impl Command for SetStyleSheetText

Source§

const METHOD: &'static str = "CSS.setStyleSheetText"

Source§

type Response = SetStyleSheetTextResult

Source§

impl Command for SetStyleTexts

Source§

const METHOD: &'static str = "CSS.setStyleTexts"

Source§

type Response = SetStyleTextsResult

Source§

impl Command for SetSupportsText

Source§

const METHOD: &'static str = "CSS.setSupportsText"

Source§

type Response = SetSupportsTextResult

Source§

impl Command for StartRuleUsageTracking

Source§

const METHOD: &'static str = "CSS.startRuleUsageTracking"

Source§

type Response = ()

Source§

impl Command for StopRuleUsageTracking

Source§

const METHOD: &'static str = "CSS.stopRuleUsageTracking"

Source§

type Response = StopRuleUsageTrackingResult

Source§

impl Command for TakeComputedStyleUpdates

Source§

const METHOD: &'static str = "CSS.takeComputedStyleUpdates"

Source§

type Response = TakeComputedStyleUpdatesResult

Source§

impl Command for TakeCoverageDelta

Source§

const METHOD: &'static str = "CSS.takeCoverageDelta"

Source§

type Response = TakeCoverageDeltaResult

Source§

impl Command for TrackComputedStyleUpdates

Source§

const METHOD: &'static str = "CSS.trackComputedStyleUpdates"

Source§

type Response = ()

Source§

impl Command for TrackComputedStyleUpdatesForNode

Source§

const METHOD: &'static str = "CSS.trackComputedStyleUpdatesForNode"

Source§

type Response = ()

Source§

impl Command for ContinueToLocation

Source§

const METHOD: &'static str = "Debugger.continueToLocation"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::debugger::Disable

Source§

const METHOD: &'static str = "Debugger.disable"

Source§

type Response = ()

Source§

impl Command for DisassembleWasmModule

Source§

const METHOD: &'static str = "Debugger.disassembleWasmModule"

Source§

type Response = DisassembleWasmModuleResult

Source§

impl Command for cdpkit::cdp::debugger::Enable

Source§

const METHOD: &'static str = "Debugger.enable"

Source§

type Response = EnableResult

Source§

impl Command for EvaluateOnCallFrame

Source§

const METHOD: &'static str = "Debugger.evaluateOnCallFrame"

Source§

type Response = EvaluateOnCallFrameResult

Source§

impl Command for GetPossibleBreakpoints

Source§

const METHOD: &'static str = "Debugger.getPossibleBreakpoints"

Source§

type Response = GetPossibleBreakpointsResult

Source§

impl Command for GetScriptSource

Source§

const METHOD: &'static str = "Debugger.getScriptSource"

Source§

type Response = GetScriptSourceResult

Source§

impl Command for GetStackTrace

Source§

const METHOD: &'static str = "Debugger.getStackTrace"

Source§

type Response = GetStackTraceResult

Source§

impl Command for GetWasmBytecode

Source§

const METHOD: &'static str = "Debugger.getWasmBytecode"

Source§

type Response = GetWasmBytecodeResult

Source§

impl Command for NextWasmDisassemblyChunk

Source§

const METHOD: &'static str = "Debugger.nextWasmDisassemblyChunk"

Source§

type Response = NextWasmDisassemblyChunkResult

Source§

impl Command for Pause

Source§

const METHOD: &'static str = "Debugger.pause"

Source§

type Response = ()

Source§

impl Command for PauseOnAsyncCall

Source§

const METHOD: &'static str = "Debugger.pauseOnAsyncCall"

Source§

type Response = ()

Source§

impl Command for RemoveBreakpoint

Source§

const METHOD: &'static str = "Debugger.removeBreakpoint"

Source§

type Response = ()

Source§

impl Command for RestartFrame

Source§

const METHOD: &'static str = "Debugger.restartFrame"

Source§

type Response = RestartFrameResult

Source§

impl Command for Resume

Source§

const METHOD: &'static str = "Debugger.resume"

Source§

type Response = ()

Source§

impl Command for SearchInContent

Source§

const METHOD: &'static str = "Debugger.searchInContent"

Source§

type Response = SearchInContentResult

Source§

impl Command for cdpkit::cdp::debugger::SetAsyncCallStackDepth

Source§

const METHOD: &'static str = "Debugger.setAsyncCallStackDepth"

Source§

type Response = ()

Source§

impl Command for SetBlackboxExecutionContexts

Source§

const METHOD: &'static str = "Debugger.setBlackboxExecutionContexts"

Source§

type Response = ()

Source§

impl Command for SetBlackboxPatterns

Source§

const METHOD: &'static str = "Debugger.setBlackboxPatterns"

Source§

type Response = ()

Source§

impl Command for SetBlackboxedRanges

Source§

const METHOD: &'static str = "Debugger.setBlackboxedRanges"

Source§

type Response = ()

Source§

impl Command for SetBreakpoint

Source§

const METHOD: &'static str = "Debugger.setBreakpoint"

Source§

type Response = SetBreakpointResult

Source§

impl Command for SetBreakpointByUrl

Source§

const METHOD: &'static str = "Debugger.setBreakpointByUrl"

Source§

type Response = SetBreakpointByUrlResult

Source§

impl Command for SetBreakpointOnFunctionCall

Source§

const METHOD: &'static str = "Debugger.setBreakpointOnFunctionCall"

Source§

type Response = SetBreakpointOnFunctionCallResult

Source§

impl Command for SetBreakpointsActive

Source§

const METHOD: &'static str = "Debugger.setBreakpointsActive"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::debugger::SetInstrumentationBreakpoint

Source§

const METHOD: &'static str = "Debugger.setInstrumentationBreakpoint"

Source§

type Response = SetInstrumentationBreakpointResult

Source§

impl Command for SetPauseOnExceptions

Source§

const METHOD: &'static str = "Debugger.setPauseOnExceptions"

Source§

type Response = ()

Source§

impl Command for SetReturnValue

Source§

const METHOD: &'static str = "Debugger.setReturnValue"

Source§

type Response = ()

Source§

impl Command for SetScriptSource

Source§

const METHOD: &'static str = "Debugger.setScriptSource"

Source§

type Response = SetScriptSourceResult

Source§

impl Command for SetSkipAllPauses

Source§

const METHOD: &'static str = "Debugger.setSkipAllPauses"

Source§

type Response = ()

Source§

impl Command for SetVariableValue

Source§

const METHOD: &'static str = "Debugger.setVariableValue"

Source§

type Response = ()

Source§

impl Command for StepInto

Source§

const METHOD: &'static str = "Debugger.stepInto"

Source§

type Response = ()

Source§

impl Command for StepOut

Source§

const METHOD: &'static str = "Debugger.stepOut"

Source§

type Response = ()

Source§

impl Command for StepOver

Source§

const METHOD: &'static str = "Debugger.stepOver"

Source§

type Response = ()

Source§

impl Command for CancelPrompt

Source§

const METHOD: &'static str = "DeviceAccess.cancelPrompt"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::device_access::Disable

Source§

const METHOD: &'static str = "DeviceAccess.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::device_access::Enable

Source§

const METHOD: &'static str = "DeviceAccess.enable"

Source§

type Response = ()

Source§

impl Command for SelectPrompt

Source§

const METHOD: &'static str = "DeviceAccess.selectPrompt"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::device_orientation::ClearDeviceOrientationOverride

Source§

const METHOD: &'static str = "DeviceOrientation.clearDeviceOrientationOverride"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::device_orientation::SetDeviceOrientationOverride

Source§

const METHOD: &'static str = "DeviceOrientation.setDeviceOrientationOverride"

Source§

type Response = ()

Source§

impl Command for CollectClassNamesFromSubtree

Source§

const METHOD: &'static str = "DOM.collectClassNamesFromSubtree"

Source§

type Response = CollectClassNamesFromSubtreeResult

Source§

impl Command for CopyTo

Source§

const METHOD: &'static str = "DOM.copyTo"

Source§

type Response = CopyToResult

Source§

impl Command for DescribeNode

Source§

const METHOD: &'static str = "DOM.describeNode"

Source§

type Response = DescribeNodeResult

Source§

impl Command for cdpkit::cdp::dom::Disable

Source§

const METHOD: &'static str = "DOM.disable"

Source§

type Response = ()

Source§

impl Command for DiscardSearchResults

Source§

const METHOD: &'static str = "DOM.discardSearchResults"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::dom::Enable

Source§

const METHOD: &'static str = "DOM.enable"

Source§

type Response = ()

Source§

impl Command for Focus

Source§

const METHOD: &'static str = "DOM.focus"

Source§

type Response = ()

Source§

impl Command for ForceShowPopover

Source§

const METHOD: &'static str = "DOM.forceShowPopover"

Source§

type Response = ForceShowPopoverResult

Source§

impl Command for GetAnchorElement

Source§

const METHOD: &'static str = "DOM.getAnchorElement"

Source§

type Response = GetAnchorElementResult

Source§

impl Command for GetAttributes

Source§

const METHOD: &'static str = "DOM.getAttributes"

Source§

type Response = GetAttributesResult

Source§

impl Command for GetBoxModel

Source§

const METHOD: &'static str = "DOM.getBoxModel"

Source§

type Response = GetBoxModelResult

Source§

impl Command for GetContainerForNode

Source§

const METHOD: &'static str = "DOM.getContainerForNode"

Source§

type Response = GetContainerForNodeResult

Source§

impl Command for GetContentQuads

Source§

const METHOD: &'static str = "DOM.getContentQuads"

Source§

type Response = GetContentQuadsResult

Source§

impl Command for GetDetachedDomNodes

Source§

const METHOD: &'static str = "DOM.getDetachedDomNodes"

Source§

type Response = GetDetachedDomNodesResult

Source§

impl Command for GetDocument

Source§

const METHOD: &'static str = "DOM.getDocument"

Source§

type Response = GetDocumentResult

Source§

impl Command for GetElementByRelation

Source§

const METHOD: &'static str = "DOM.getElementByRelation"

Source§

type Response = GetElementByRelationResult

Source§

impl Command for GetFileInfo

Source§

const METHOD: &'static str = "DOM.getFileInfo"

Source§

type Response = GetFileInfoResult

Source§

impl Command for GetFlattenedDocument

Source§

const METHOD: &'static str = "DOM.getFlattenedDocument"

Source§

type Response = GetFlattenedDocumentResult

Source§

impl Command for GetFrameOwner

Source§

const METHOD: &'static str = "DOM.getFrameOwner"

Source§

type Response = GetFrameOwnerResult

Source§

impl Command for GetNodeForLocation

Source§

const METHOD: &'static str = "DOM.getNodeForLocation"

Source§

type Response = GetNodeForLocationResult

Source§

impl Command for GetNodeStackTraces

Source§

const METHOD: &'static str = "DOM.getNodeStackTraces"

Source§

type Response = GetNodeStackTracesResult

Source§

impl Command for GetNodesForSubtreeByStyle

Source§

const METHOD: &'static str = "DOM.getNodesForSubtreeByStyle"

Source§

type Response = GetNodesForSubtreeByStyleResult

Source§

impl Command for GetOuterHtml

Source§

const METHOD: &'static str = "DOM.getOuterHTML"

Source§

type Response = GetOuterHtmlResult

Source§

impl Command for GetQueryingDescendantsForContainer

Source§

const METHOD: &'static str = "DOM.getQueryingDescendantsForContainer"

Source§

type Response = GetQueryingDescendantsForContainerResult

Source§

impl Command for GetRelayoutBoundary

Source§

const METHOD: &'static str = "DOM.getRelayoutBoundary"

Source§

type Response = GetRelayoutBoundaryResult

Source§

impl Command for GetSearchResults

Source§

const METHOD: &'static str = "DOM.getSearchResults"

Source§

type Response = GetSearchResultsResult

Source§

impl Command for GetTopLayerElements

Source§

const METHOD: &'static str = "DOM.getTopLayerElements"

Source§

type Response = GetTopLayerElementsResult

Source§

impl Command for cdpkit::cdp::dom::HideHighlight

Source§

const METHOD: &'static str = "DOM.hideHighlight"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::dom::HighlightNode

Source§

const METHOD: &'static str = "DOM.highlightNode"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::dom::HighlightRect

Source§

const METHOD: &'static str = "DOM.highlightRect"

Source§

type Response = ()

Source§

impl Command for MarkUndoableState

Source§

const METHOD: &'static str = "DOM.markUndoableState"

Source§

type Response = ()

Source§

impl Command for MoveTo

Source§

const METHOD: &'static str = "DOM.moveTo"

Source§

type Response = MoveToResult

Source§

impl Command for PerformSearch

Source§

const METHOD: &'static str = "DOM.performSearch"

Source§

type Response = PerformSearchResult

Source§

impl Command for PushNodeByPathToFrontend

Source§

const METHOD: &'static str = "DOM.pushNodeByPathToFrontend"

Source§

type Response = PushNodeByPathToFrontendResult

Source§

impl Command for PushNodesByBackendIdsToFrontend

Source§

const METHOD: &'static str = "DOM.pushNodesByBackendIdsToFrontend"

Source§

type Response = PushNodesByBackendIdsToFrontendResult

Source§

impl Command for QuerySelector

Source§

const METHOD: &'static str = "DOM.querySelector"

Source§

type Response = QuerySelectorResult

Source§

impl Command for QuerySelectorAll

Source§

const METHOD: &'static str = "DOM.querySelectorAll"

Source§

type Response = QuerySelectorAllResult

Source§

impl Command for Redo

Source§

const METHOD: &'static str = "DOM.redo"

Source§

type Response = ()

Source§

impl Command for RemoveAttribute

Source§

const METHOD: &'static str = "DOM.removeAttribute"

Source§

type Response = ()

Source§

impl Command for RemoveNode

Source§

const METHOD: &'static str = "DOM.removeNode"

Source§

type Response = ()

Source§

impl Command for RequestChildNodes

Source§

const METHOD: &'static str = "DOM.requestChildNodes"

Source§

type Response = ()

Source§

impl Command for RequestNode

Source§

const METHOD: &'static str = "DOM.requestNode"

Source§

type Response = RequestNodeResult

Source§

impl Command for ResolveNode

Source§

const METHOD: &'static str = "DOM.resolveNode"

Source§

type Response = ResolveNodeResult

Source§

impl Command for ScrollIntoViewIfNeeded

Source§

const METHOD: &'static str = "DOM.scrollIntoViewIfNeeded"

Source§

type Response = ()

Source§

impl Command for SetAttributeValue

Source§

const METHOD: &'static str = "DOM.setAttributeValue"

Source§

type Response = ()

Source§

impl Command for SetAttributesAsText

Source§

const METHOD: &'static str = "DOM.setAttributesAsText"

Source§

type Response = ()

Source§

impl Command for SetFileInputFiles

Source§

const METHOD: &'static str = "DOM.setFileInputFiles"

Source§

type Response = ()

Source§

impl Command for SetInspectedNode

Source§

const METHOD: &'static str = "DOM.setInspectedNode"

Source§

type Response = ()

Source§

impl Command for SetNodeName

Source§

const METHOD: &'static str = "DOM.setNodeName"

Source§

type Response = SetNodeNameResult

Source§

impl Command for SetNodeStackTracesEnabled

Source§

const METHOD: &'static str = "DOM.setNodeStackTracesEnabled"

Source§

type Response = ()

Source§

impl Command for SetNodeValue

Source§

const METHOD: &'static str = "DOM.setNodeValue"

Source§

type Response = ()

Source§

impl Command for SetOuterHtml

Source§

const METHOD: &'static str = "DOM.setOuterHTML"

Source§

type Response = ()

Source§

impl Command for Undo

Source§

const METHOD: &'static str = "DOM.undo"

Source§

type Response = ()

Source§

impl Command for GetEventListeners

Source§

const METHOD: &'static str = "DOMDebugger.getEventListeners"

Source§

type Response = GetEventListenersResult

Source§

impl Command for RemoveDomBreakpoint

Source§

const METHOD: &'static str = "DOMDebugger.removeDOMBreakpoint"

Source§

type Response = ()

Source§

impl Command for RemoveEventListenerBreakpoint

Source§

const METHOD: &'static str = "DOMDebugger.removeEventListenerBreakpoint"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::dom_debugger::RemoveInstrumentationBreakpoint

Source§

const METHOD: &'static str = "DOMDebugger.removeInstrumentationBreakpoint"

Source§

type Response = ()

Source§

impl Command for RemoveXhrBreakpoint

Source§

const METHOD: &'static str = "DOMDebugger.removeXHRBreakpoint"

Source§

type Response = ()

Source§

impl Command for SetBreakOnCspViolation

Source§

const METHOD: &'static str = "DOMDebugger.setBreakOnCSPViolation"

Source§

type Response = ()

Source§

impl Command for SetDomBreakpoint

Source§

const METHOD: &'static str = "DOMDebugger.setDOMBreakpoint"

Source§

type Response = ()

Source§

impl Command for SetEventListenerBreakpoint

Source§

const METHOD: &'static str = "DOMDebugger.setEventListenerBreakpoint"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::dom_debugger::SetInstrumentationBreakpoint

Source§

const METHOD: &'static str = "DOMDebugger.setInstrumentationBreakpoint"

Source§

type Response = ()

Source§

impl Command for SetXhrBreakpoint

Source§

const METHOD: &'static str = "DOMDebugger.setXHRBreakpoint"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::dom_snapshot::CaptureSnapshot

Source§

const METHOD: &'static str = "DOMSnapshot.captureSnapshot"

Source§

type Response = CaptureSnapshotResult

Source§

impl Command for cdpkit::cdp::dom_snapshot::Disable

Source§

const METHOD: &'static str = "DOMSnapshot.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::dom_snapshot::Enable

Source§

const METHOD: &'static str = "DOMSnapshot.enable"

Source§

type Response = ()

Source§

impl Command for GetSnapshot

Source§

const METHOD: &'static str = "DOMSnapshot.getSnapshot"

Source§

type Response = GetSnapshotResult

Source§

impl Command for cdpkit::cdp::dom_storage::Clear

Source§

const METHOD: &'static str = "DOMStorage.clear"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::dom_storage::Disable

Source§

const METHOD: &'static str = "DOMStorage.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::dom_storage::Enable

Source§

const METHOD: &'static str = "DOMStorage.enable"

Source§

type Response = ()

Source§

impl Command for GetDomStorageItems

Source§

const METHOD: &'static str = "DOMStorage.getDOMStorageItems"

Source§

type Response = GetDomStorageItemsResult

Source§

impl Command for RemoveDomStorageItem

Source§

const METHOD: &'static str = "DOMStorage.removeDOMStorageItem"

Source§

type Response = ()

Source§

impl Command for SetDomStorageItem

Source§

const METHOD: &'static str = "DOMStorage.setDOMStorageItem"

Source§

type Response = ()

Source§

impl Command for AddScreen

Source§

const METHOD: &'static str = "Emulation.addScreen"

Source§

type Response = AddScreenResult

Source§

impl Command for CanEmulate

Source§

const METHOD: &'static str = "Emulation.canEmulate"

Source§

type Response = CanEmulateResult

Source§

impl Command for cdpkit::cdp::emulation::ClearDeviceMetricsOverride

Source§

const METHOD: &'static str = "Emulation.clearDeviceMetricsOverride"

Source§

type Response = ()

Source§

impl Command for ClearDevicePostureOverride

Source§

const METHOD: &'static str = "Emulation.clearDevicePostureOverride"

Source§

type Response = ()

Source§

impl Command for ClearDisplayFeaturesOverride

Source§

const METHOD: &'static str = "Emulation.clearDisplayFeaturesOverride"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::emulation::ClearGeolocationOverride

Source§

const METHOD: &'static str = "Emulation.clearGeolocationOverride"

Source§

type Response = ()

Source§

impl Command for ClearIdleOverride

Source§

const METHOD: &'static str = "Emulation.clearIdleOverride"

Source§

type Response = ()

Source§

impl Command for GetOverriddenSensorInformation

Source§

const METHOD: &'static str = "Emulation.getOverriddenSensorInformation"

Source§

type Response = GetOverriddenSensorInformationResult

Source§

impl Command for GetScreenInfos

Source§

const METHOD: &'static str = "Emulation.getScreenInfos"

Source§

type Response = GetScreenInfosResult

Source§

impl Command for RemoveScreen

Source§

const METHOD: &'static str = "Emulation.removeScreen"

Source§

type Response = ()

Source§

impl Command for ResetPageScaleFactor

Source§

const METHOD: &'static str = "Emulation.resetPageScaleFactor"

Source§

type Response = ()

Source§

impl Command for SetAutoDarkModeOverride

Source§

const METHOD: &'static str = "Emulation.setAutoDarkModeOverride"

Source§

type Response = ()

Source§

impl Command for SetAutomationOverride

Source§

const METHOD: &'static str = "Emulation.setAutomationOverride"

Source§

type Response = ()

Source§

impl Command for SetCpuThrottlingRate

Source§

const METHOD: &'static str = "Emulation.setCPUThrottlingRate"

Source§

type Response = ()

Source§

impl Command for SetDataSaverOverride

Source§

const METHOD: &'static str = "Emulation.setDataSaverOverride"

Source§

type Response = ()

Source§

impl Command for SetDefaultBackgroundColorOverride

Source§

const METHOD: &'static str = "Emulation.setDefaultBackgroundColorOverride"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::emulation::SetDeviceMetricsOverride

Source§

const METHOD: &'static str = "Emulation.setDeviceMetricsOverride"

Source§

type Response = ()

Source§

impl Command for SetDevicePostureOverride

Source§

const METHOD: &'static str = "Emulation.setDevicePostureOverride"

Source§

type Response = ()

Source§

impl Command for SetDisabledImageTypes

Source§

const METHOD: &'static str = "Emulation.setDisabledImageTypes"

Source§

type Response = ()

Source§

impl Command for SetDisplayFeaturesOverride

Source§

const METHOD: &'static str = "Emulation.setDisplayFeaturesOverride"

Source§

type Response = ()

Source§

impl Command for SetDocumentCookieDisabled

Source§

const METHOD: &'static str = "Emulation.setDocumentCookieDisabled"

Source§

type Response = ()

Source§

impl Command for SetEmitTouchEventsForMouse

Source§

const METHOD: &'static str = "Emulation.setEmitTouchEventsForMouse"

Source§

type Response = ()

Source§

impl Command for SetEmulatedMedia

Source§

const METHOD: &'static str = "Emulation.setEmulatedMedia"

Source§

type Response = ()

Source§

impl Command for SetEmulatedOsTextScale

Source§

const METHOD: &'static str = "Emulation.setEmulatedOSTextScale"

Source§

type Response = ()

Source§

impl Command for SetEmulatedVisionDeficiency

Source§

const METHOD: &'static str = "Emulation.setEmulatedVisionDeficiency"

Source§

type Response = ()

Source§

impl Command for SetFocusEmulationEnabled

Source§

const METHOD: &'static str = "Emulation.setFocusEmulationEnabled"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::emulation::SetGeolocationOverride

Source§

const METHOD: &'static str = "Emulation.setGeolocationOverride"

Source§

type Response = ()

Source§

impl Command for SetHardwareConcurrencyOverride

Source§

const METHOD: &'static str = "Emulation.setHardwareConcurrencyOverride"

Source§

type Response = ()

Source§

impl Command for SetIdleOverride

Source§

const METHOD: &'static str = "Emulation.setIdleOverride"

Source§

type Response = ()

Source§

impl Command for SetLocaleOverride

Source§

const METHOD: &'static str = "Emulation.setLocaleOverride"

Source§

type Response = ()

Source§

impl Command for SetNavigatorOverrides

Source§

const METHOD: &'static str = "Emulation.setNavigatorOverrides"

Source§

type Response = ()

Source§

impl Command for SetPageScaleFactor

Source§

const METHOD: &'static str = "Emulation.setPageScaleFactor"

Source§

type Response = ()

Source§

impl Command for SetPressureDataOverride

Source§

const METHOD: &'static str = "Emulation.setPressureDataOverride"

Source§

type Response = ()

Source§

impl Command for SetPressureSourceOverrideEnabled

Source§

const METHOD: &'static str = "Emulation.setPressureSourceOverrideEnabled"

Source§

type Response = ()

Source§

impl Command for SetPressureStateOverride

Source§

const METHOD: &'static str = "Emulation.setPressureStateOverride"

Source§

type Response = ()

Source§

impl Command for SetSafeAreaInsetsOverride

Source§

const METHOD: &'static str = "Emulation.setSafeAreaInsetsOverride"

Source§

type Response = ()

Source§

impl Command for SetScriptExecutionDisabled

Source§

const METHOD: &'static str = "Emulation.setScriptExecutionDisabled"

Source§

type Response = ()

Source§

impl Command for SetScrollbarsHidden

Source§

const METHOD: &'static str = "Emulation.setScrollbarsHidden"

Source§

type Response = ()

Source§

impl Command for SetSensorOverrideEnabled

Source§

const METHOD: &'static str = "Emulation.setSensorOverrideEnabled"

Source§

type Response = ()

Source§

impl Command for SetSensorOverrideReadings

Source§

const METHOD: &'static str = "Emulation.setSensorOverrideReadings"

Source§

type Response = ()

Source§

impl Command for SetSmallViewportHeightDifferenceOverride

Source§

const METHOD: &'static str = "Emulation.setSmallViewportHeightDifferenceOverride"

Source§

type Response = ()

Source§

impl Command for SetTimezoneOverride

Source§

const METHOD: &'static str = "Emulation.setTimezoneOverride"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::emulation::SetTouchEmulationEnabled

Source§

const METHOD: &'static str = "Emulation.setTouchEmulationEnabled"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::emulation::SetUserAgentOverride

Source§

const METHOD: &'static str = "Emulation.setUserAgentOverride"

Source§

type Response = ()

Source§

impl Command for SetVirtualTimePolicy

Source§

const METHOD: &'static str = "Emulation.setVirtualTimePolicy"

Source§

type Response = SetVirtualTimePolicyResult

Source§

impl Command for SetVisibleSize

Source§

const METHOD: &'static str = "Emulation.setVisibleSize"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::event_breakpoints::Disable

Source§

const METHOD: &'static str = "EventBreakpoints.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::event_breakpoints::RemoveInstrumentationBreakpoint

Source§

const METHOD: &'static str = "EventBreakpoints.removeInstrumentationBreakpoint"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::event_breakpoints::SetInstrumentationBreakpoint

Source§

const METHOD: &'static str = "EventBreakpoints.setInstrumentationBreakpoint"

Source§

type Response = ()

Source§

impl Command for ClearStorageItems

Source§

const METHOD: &'static str = "Extensions.clearStorageItems"

Source§

type Response = ()

Source§

impl Command for GetStorageItems

Source§

const METHOD: &'static str = "Extensions.getStorageItems"

Source§

type Response = GetStorageItemsResult

Source§

impl Command for LoadUnpacked

Source§

const METHOD: &'static str = "Extensions.loadUnpacked"

Source§

type Response = LoadUnpackedResult

Source§

impl Command for RemoveStorageItems

Source§

const METHOD: &'static str = "Extensions.removeStorageItems"

Source§

type Response = ()

Source§

impl Command for SetStorageItems

Source§

const METHOD: &'static str = "Extensions.setStorageItems"

Source§

type Response = ()

Source§

impl Command for TriggerAction

Source§

const METHOD: &'static str = "Extensions.triggerAction"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::extensions::Uninstall

Source§

const METHOD: &'static str = "Extensions.uninstall"

Source§

type Response = ()

Source§

impl Command for ClickDialogButton

Source§

const METHOD: &'static str = "FedCm.clickDialogButton"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::fed_cm::Disable

Source§

const METHOD: &'static str = "FedCm.disable"

Source§

type Response = ()

Source§

impl Command for DismissDialog

Source§

const METHOD: &'static str = "FedCm.dismissDialog"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::fed_cm::Enable

Source§

const METHOD: &'static str = "FedCm.enable"

Source§

type Response = ()

Source§

impl Command for OpenUrl

Source§

const METHOD: &'static str = "FedCm.openUrl"

Source§

type Response = ()

Source§

impl Command for ResetCooldown

Source§

const METHOD: &'static str = "FedCm.resetCooldown"

Source§

type Response = ()

Source§

impl Command for SelectAccount

Source§

const METHOD: &'static str = "FedCm.selectAccount"

Source§

type Response = ()

Source§

impl Command for ContinueRequest

Source§

const METHOD: &'static str = "Fetch.continueRequest"

Source§

type Response = ()

Source§

impl Command for ContinueResponse

Source§

const METHOD: &'static str = "Fetch.continueResponse"

Source§

type Response = ()

Source§

impl Command for ContinueWithAuth

Source§

const METHOD: &'static str = "Fetch.continueWithAuth"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::fetch::Disable

Source§

const METHOD: &'static str = "Fetch.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::fetch::Enable

Source§

const METHOD: &'static str = "Fetch.enable"

Source§

type Response = ()

Source§

impl Command for FailRequest

Source§

const METHOD: &'static str = "Fetch.failRequest"

Source§

type Response = ()

Source§

impl Command for FulfillRequest

Source§

const METHOD: &'static str = "Fetch.fulfillRequest"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::fetch::GetResponseBody

Source§

const METHOD: &'static str = "Fetch.getResponseBody"

Source§

type Response = GetResponseBodyResult

Source§

impl Command for TakeResponseBodyAsStream

Source§

const METHOD: &'static str = "Fetch.takeResponseBodyAsStream"

Source§

type Response = TakeResponseBodyAsStreamResult

Source§

impl Command for GetDirectory

Source§

const METHOD: &'static str = "FileSystem.getDirectory"

Source§

type Response = GetDirectoryResult

Source§

impl Command for BeginFrame

Source§

const METHOD: &'static str = "HeadlessExperimental.beginFrame"

Source§

type Response = BeginFrameResult

Source§

impl Command for cdpkit::cdp::headless_experimental::Disable

Source§

const METHOD: &'static str = "HeadlessExperimental.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::headless_experimental::Enable

Source§

const METHOD: &'static str = "HeadlessExperimental.enable"

Source§

type Response = ()

Source§

impl Command for AddInspectedHeapObject

Source§

const METHOD: &'static str = "HeapProfiler.addInspectedHeapObject"

Source§

type Response = ()

Source§

impl Command for CollectGarbage

Source§

const METHOD: &'static str = "HeapProfiler.collectGarbage"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::heap_profiler::Disable

Source§

const METHOD: &'static str = "HeapProfiler.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::heap_profiler::Enable

Source§

const METHOD: &'static str = "HeapProfiler.enable"

Source§

type Response = ()

Source§

impl Command for GetHeapObjectId

Source§

const METHOD: &'static str = "HeapProfiler.getHeapObjectId"

Source§

type Response = GetHeapObjectIdResult

Source§

impl Command for GetObjectByHeapObjectId

Source§

const METHOD: &'static str = "HeapProfiler.getObjectByHeapObjectId"

Source§

type Response = GetObjectByHeapObjectIdResult

Source§

impl Command for cdpkit::cdp::heap_profiler::GetSamplingProfile

Source§

const METHOD: &'static str = "HeapProfiler.getSamplingProfile"

Source§

type Response = GetSamplingProfileResult

Source§

impl Command for cdpkit::cdp::heap_profiler::StartSampling

Source§

const METHOD: &'static str = "HeapProfiler.startSampling"

Source§

type Response = ()

Source§

impl Command for StartTrackingHeapObjects

Source§

const METHOD: &'static str = "HeapProfiler.startTrackingHeapObjects"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::heap_profiler::StopSampling

Source§

const METHOD: &'static str = "HeapProfiler.stopSampling"

Source§

type Response = StopSamplingResult

Source§

impl Command for StopTrackingHeapObjects

Source§

const METHOD: &'static str = "HeapProfiler.stopTrackingHeapObjects"

Source§

type Response = ()

Source§

impl Command for TakeHeapSnapshot

Source§

const METHOD: &'static str = "HeapProfiler.takeHeapSnapshot"

Source§

type Response = ()

Source§

impl Command for ClearObjectStore

Source§

const METHOD: &'static str = "IndexedDB.clearObjectStore"

Source§

type Response = ()

Source§

impl Command for DeleteDatabase

Source§

const METHOD: &'static str = "IndexedDB.deleteDatabase"

Source§

type Response = ()

Source§

impl Command for DeleteObjectStoreEntries

Source§

const METHOD: &'static str = "IndexedDB.deleteObjectStoreEntries"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::indexed_db::Disable

Source§

const METHOD: &'static str = "IndexedDB.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::indexed_db::Enable

Source§

const METHOD: &'static str = "IndexedDB.enable"

Source§

type Response = ()

Source§

impl Command for GetMetadata

Source§

const METHOD: &'static str = "IndexedDB.getMetadata"

Source§

type Response = GetMetadataResult

Source§

impl Command for RequestData

Source§

const METHOD: &'static str = "IndexedDB.requestData"

Source§

type Response = RequestDataResult

Source§

impl Command for RequestDatabase

Source§

const METHOD: &'static str = "IndexedDB.requestDatabase"

Source§

type Response = RequestDatabaseResult

Source§

impl Command for RequestDatabaseNames

Source§

const METHOD: &'static str = "IndexedDB.requestDatabaseNames"

Source§

type Response = RequestDatabaseNamesResult

Source§

impl Command for CancelDragging

Source§

const METHOD: &'static str = "Input.cancelDragging"

Source§

type Response = ()

Source§

impl Command for DispatchDragEvent

Source§

const METHOD: &'static str = "Input.dispatchDragEvent"

Source§

type Response = ()

Source§

impl Command for DispatchKeyEvent

Source§

const METHOD: &'static str = "Input.dispatchKeyEvent"

Source§

type Response = ()

Source§

impl Command for DispatchMouseEvent

Source§

const METHOD: &'static str = "Input.dispatchMouseEvent"

Source§

type Response = ()

Source§

impl Command for DispatchTouchEvent

Source§

const METHOD: &'static str = "Input.dispatchTouchEvent"

Source§

type Response = ()

Source§

impl Command for EmulateTouchFromMouseEvent

Source§

const METHOD: &'static str = "Input.emulateTouchFromMouseEvent"

Source§

type Response = ()

Source§

impl Command for ImeSetComposition

Source§

const METHOD: &'static str = "Input.imeSetComposition"

Source§

type Response = ()

Source§

impl Command for InsertText

Source§

const METHOD: &'static str = "Input.insertText"

Source§

type Response = ()

Source§

impl Command for SetIgnoreInputEvents

Source§

const METHOD: &'static str = "Input.setIgnoreInputEvents"

Source§

type Response = ()

Source§

impl Command for SetInterceptDrags

Source§

const METHOD: &'static str = "Input.setInterceptDrags"

Source§

type Response = ()

Source§

impl Command for SynthesizePinchGesture

Source§

const METHOD: &'static str = "Input.synthesizePinchGesture"

Source§

type Response = ()

Source§

impl Command for SynthesizeScrollGesture

Source§

const METHOD: &'static str = "Input.synthesizeScrollGesture"

Source§

type Response = ()

Source§

impl Command for SynthesizeTapGesture

Source§

const METHOD: &'static str = "Input.synthesizeTapGesture"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::inspector::Disable

Source§

const METHOD: &'static str = "Inspector.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::inspector::Enable

Source§

const METHOD: &'static str = "Inspector.enable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::io::Close

Source§

const METHOD: &'static str = "IO.close"

Source§

type Response = ()

Source§

impl Command for Read

Source§

const METHOD: &'static str = "IO.read"

Source§

type Response = ReadResult

Source§

impl Command for ResolveBlob

Source§

const METHOD: &'static str = "IO.resolveBlob"

Source§

type Response = ResolveBlobResult

Source§

impl Command for CompositingReasons

Source§

const METHOD: &'static str = "LayerTree.compositingReasons"

Source§

type Response = CompositingReasonsResult

Source§

impl Command for cdpkit::cdp::layer_tree::Disable

Source§

const METHOD: &'static str = "LayerTree.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::layer_tree::Enable

Source§

const METHOD: &'static str = "LayerTree.enable"

Source§

type Response = ()

Source§

impl Command for LoadSnapshot

Source§

const METHOD: &'static str = "LayerTree.loadSnapshot"

Source§

type Response = LoadSnapshotResult

Source§

impl Command for MakeSnapshot

Source§

const METHOD: &'static str = "LayerTree.makeSnapshot"

Source§

type Response = MakeSnapshotResult

Source§

impl Command for ProfileSnapshot

Source§

const METHOD: &'static str = "LayerTree.profileSnapshot"

Source§

type Response = ProfileSnapshotResult

Source§

impl Command for ReleaseSnapshot

Source§

const METHOD: &'static str = "LayerTree.releaseSnapshot"

Source§

type Response = ()

Source§

impl Command for ReplaySnapshot

Source§

const METHOD: &'static str = "LayerTree.replaySnapshot"

Source§

type Response = ReplaySnapshotResult

Source§

impl Command for SnapshotCommandLog

Source§

const METHOD: &'static str = "LayerTree.snapshotCommandLog"

Source§

type Response = SnapshotCommandLogResult

Source§

impl Command for cdpkit::cdp::log::Clear

Source§

const METHOD: &'static str = "Log.clear"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::log::Disable

Source§

const METHOD: &'static str = "Log.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::log::Enable

Source§

const METHOD: &'static str = "Log.enable"

Source§

type Response = ()

Source§

impl Command for StartViolationsReport

Source§

const METHOD: &'static str = "Log.startViolationsReport"

Source§

type Response = ()

Source§

impl Command for StopViolationsReport

Source§

const METHOD: &'static str = "Log.stopViolationsReport"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::media::Disable

Source§

const METHOD: &'static str = "Media.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::media::Enable

Source§

const METHOD: &'static str = "Media.enable"

Source§

type Response = ()

Source§

impl Command for ForciblyPurgeJavaScriptMemory

Source§

const METHOD: &'static str = "Memory.forciblyPurgeJavaScriptMemory"

Source§

type Response = ()

Source§

impl Command for GetAllTimeSamplingProfile

Source§

const METHOD: &'static str = "Memory.getAllTimeSamplingProfile"

Source§

type Response = GetAllTimeSamplingProfileResult

Source§

impl Command for GetBrowserSamplingProfile

Source§

const METHOD: &'static str = "Memory.getBrowserSamplingProfile"

Source§

type Response = GetBrowserSamplingProfileResult

Source§

impl Command for GetDomCounters

Source§

const METHOD: &'static str = "Memory.getDOMCounters"

Source§

type Response = GetDomCountersResult

Source§

impl Command for GetDomCountersForLeakDetection

Source§

const METHOD: &'static str = "Memory.getDOMCountersForLeakDetection"

Source§

type Response = GetDomCountersForLeakDetectionResult

Source§

impl Command for cdpkit::cdp::memory::GetSamplingProfile

Source§

const METHOD: &'static str = "Memory.getSamplingProfile"

Source§

type Response = GetSamplingProfileResult

Source§

impl Command for PrepareForLeakDetection

Source§

const METHOD: &'static str = "Memory.prepareForLeakDetection"

Source§

type Response = ()

Source§

impl Command for SetPressureNotificationsSuppressed

Source§

const METHOD: &'static str = "Memory.setPressureNotificationsSuppressed"

Source§

type Response = ()

Source§

impl Command for SimulatePressureNotification

Source§

const METHOD: &'static str = "Memory.simulatePressureNotification"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::memory::StartSampling

Source§

const METHOD: &'static str = "Memory.startSampling"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::memory::StopSampling

Source§

const METHOD: &'static str = "Memory.stopSampling"

Source§

type Response = ()

Source§

impl Command for CanClearBrowserCache

Source§

const METHOD: &'static str = "Network.canClearBrowserCache"

Source§

type Response = CanClearBrowserCacheResult

Source§

impl Command for CanClearBrowserCookies

Source§

const METHOD: &'static str = "Network.canClearBrowserCookies"

Source§

type Response = CanClearBrowserCookiesResult

Source§

impl Command for CanEmulateNetworkConditions

Source§

const METHOD: &'static str = "Network.canEmulateNetworkConditions"

Source§

type Response = CanEmulateNetworkConditionsResult

Source§

impl Command for ClearAcceptedEncodingsOverride

Source§

const METHOD: &'static str = "Network.clearAcceptedEncodingsOverride"

Source§

type Response = ()

Source§

impl Command for ClearBrowserCache

Source§

const METHOD: &'static str = "Network.clearBrowserCache"

Source§

type Response = ()

Source§

impl Command for ClearBrowserCookies

Source§

const METHOD: &'static str = "Network.clearBrowserCookies"

Source§

type Response = ()

Source§

impl Command for ConfigureDurableMessages

Source§

const METHOD: &'static str = "Network.configureDurableMessages"

Source§

type Response = ()

Source§

impl Command for ContinueInterceptedRequest

Source§

const METHOD: &'static str = "Network.continueInterceptedRequest"

Source§

type Response = ()

Source§

impl Command for DeleteCookies

Source§

const METHOD: &'static str = "Network.deleteCookies"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::network::Disable

Source§

const METHOD: &'static str = "Network.disable"

Source§

type Response = ()

Source§

impl Command for EmulateNetworkConditions

Source§

const METHOD: &'static str = "Network.emulateNetworkConditions"

Source§

type Response = ()

Source§

impl Command for EmulateNetworkConditionsByRule

Source§

const METHOD: &'static str = "Network.emulateNetworkConditionsByRule"

Source§

type Response = EmulateNetworkConditionsByRuleResult

Source§

impl Command for cdpkit::cdp::network::Enable

Source§

const METHOD: &'static str = "Network.enable"

Source§

type Response = ()

Source§

impl Command for EnableDeviceBoundSessions

Source§

const METHOD: &'static str = "Network.enableDeviceBoundSessions"

Source§

type Response = ()

Source§

impl Command for EnableReportingApi

Source§

const METHOD: &'static str = "Network.enableReportingApi"

Source§

type Response = ()

Source§

impl Command for FetchSchemefulSite

Source§

const METHOD: &'static str = "Network.fetchSchemefulSite"

Source§

type Response = FetchSchemefulSiteResult

Source§

impl Command for GetAllCookies

Source§

const METHOD: &'static str = "Network.getAllCookies"

Source§

type Response = GetAllCookiesResult

Source§

impl Command for GetCertificate

Source§

const METHOD: &'static str = "Network.getCertificate"

Source§

type Response = GetCertificateResult

Source§

impl Command for cdpkit::cdp::network::GetCookies

Source§

const METHOD: &'static str = "Network.getCookies"

Source§

type Response = GetCookiesResult

Source§

impl Command for GetRequestPostData

Source§

const METHOD: &'static str = "Network.getRequestPostData"

Source§

type Response = GetRequestPostDataResult

Source§

impl Command for cdpkit::cdp::network::GetResponseBody

Source§

const METHOD: &'static str = "Network.getResponseBody"

Source§

type Response = GetResponseBodyResult

Source§

impl Command for GetResponseBodyForInterception

Source§

const METHOD: &'static str = "Network.getResponseBodyForInterception"

Source§

type Response = GetResponseBodyForInterceptionResult

Source§

impl Command for GetSecurityIsolationStatus

Source§

const METHOD: &'static str = "Network.getSecurityIsolationStatus"

Source§

type Response = GetSecurityIsolationStatusResult

Source§

impl Command for LoadNetworkResource

Source§

const METHOD: &'static str = "Network.loadNetworkResource"

Source§

type Response = LoadNetworkResourceResult

Source§

impl Command for OverrideNetworkState

Source§

const METHOD: &'static str = "Network.overrideNetworkState"

Source§

type Response = ()

Source§

impl Command for ReplayXhr

Source§

const METHOD: &'static str = "Network.replayXHR"

Source§

type Response = ()

Source§

impl Command for SearchInResponseBody

Source§

const METHOD: &'static str = "Network.searchInResponseBody"

Source§

type Response = SearchInResponseBodyResult

Source§

impl Command for SetAcceptedEncodings

Source§

const METHOD: &'static str = "Network.setAcceptedEncodings"

Source§

type Response = ()

Source§

impl Command for SetAttachDebugStack

Source§

const METHOD: &'static str = "Network.setAttachDebugStack"

Source§

type Response = ()

Source§

impl Command for SetBlockedUrLs

Source§

const METHOD: &'static str = "Network.setBlockedURLs"

Source§

type Response = ()

Source§

impl Command for SetBypassServiceWorker

Source§

const METHOD: &'static str = "Network.setBypassServiceWorker"

Source§

type Response = ()

Source§

impl Command for SetCacheDisabled

Source§

const METHOD: &'static str = "Network.setCacheDisabled"

Source§

type Response = ()

Source§

impl Command for SetCookie

Source§

const METHOD: &'static str = "Network.setCookie"

Source§

type Response = SetCookieResult

Source§

impl Command for SetCookieControls

Source§

const METHOD: &'static str = "Network.setCookieControls"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::network::SetCookies

Source§

const METHOD: &'static str = "Network.setCookies"

Source§

type Response = ()

Source§

impl Command for SetExtraHttpHeaders

Source§

const METHOD: &'static str = "Network.setExtraHTTPHeaders"

Source§

type Response = ()

Source§

impl Command for SetRequestInterception

Source§

const METHOD: &'static str = "Network.setRequestInterception"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::network::SetUserAgentOverride

Source§

const METHOD: &'static str = "Network.setUserAgentOverride"

Source§

type Response = ()

Source§

impl Command for StreamResourceContent

Source§

const METHOD: &'static str = "Network.streamResourceContent"

Source§

type Response = StreamResourceContentResult

Source§

impl Command for TakeResponseBodyForInterceptionAsStream

Source§

const METHOD: &'static str = "Network.takeResponseBodyForInterceptionAsStream"

Source§

type Response = TakeResponseBodyForInterceptionAsStreamResult

Source§

impl Command for cdpkit::cdp::overlay::Disable

Source§

const METHOD: &'static str = "Overlay.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::overlay::Enable

Source§

const METHOD: &'static str = "Overlay.enable"

Source§

type Response = ()

Source§

impl Command for GetGridHighlightObjectsForTest

Source§

const METHOD: &'static str = "Overlay.getGridHighlightObjectsForTest"

Source§

type Response = GetGridHighlightObjectsForTestResult

Source§

impl Command for GetHighlightObjectForTest

Source§

const METHOD: &'static str = "Overlay.getHighlightObjectForTest"

Source§

type Response = GetHighlightObjectForTestResult

Source§

impl Command for GetSourceOrderHighlightObjectForTest

Source§

const METHOD: &'static str = "Overlay.getSourceOrderHighlightObjectForTest"

Source§

type Response = GetSourceOrderHighlightObjectForTestResult

Source§

impl Command for cdpkit::cdp::overlay::HideHighlight

Source§

const METHOD: &'static str = "Overlay.hideHighlight"

Source§

type Response = ()

Source§

impl Command for HighlightFrame

Source§

const METHOD: &'static str = "Overlay.highlightFrame"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::overlay::HighlightNode

Source§

const METHOD: &'static str = "Overlay.highlightNode"

Source§

type Response = ()

Source§

impl Command for HighlightQuad

Source§

const METHOD: &'static str = "Overlay.highlightQuad"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::overlay::HighlightRect

Source§

const METHOD: &'static str = "Overlay.highlightRect"

Source§

type Response = ()

Source§

impl Command for HighlightSourceOrder

Source§

const METHOD: &'static str = "Overlay.highlightSourceOrder"

Source§

type Response = ()

Source§

impl Command for SetInspectMode

Source§

const METHOD: &'static str = "Overlay.setInspectMode"

Source§

type Response = ()

Source§

impl Command for SetPausedInDebuggerMessage

Source§

const METHOD: &'static str = "Overlay.setPausedInDebuggerMessage"

Source§

type Response = ()

Source§

impl Command for SetShowAdHighlights

Source§

const METHOD: &'static str = "Overlay.setShowAdHighlights"

Source§

type Response = ()

Source§

impl Command for SetShowContainerQueryOverlays

Source§

const METHOD: &'static str = "Overlay.setShowContainerQueryOverlays"

Source§

type Response = ()

Source§

impl Command for SetShowDebugBorders

Source§

const METHOD: &'static str = "Overlay.setShowDebugBorders"

Source§

type Response = ()

Source§

impl Command for SetShowFlexOverlays

Source§

const METHOD: &'static str = "Overlay.setShowFlexOverlays"

Source§

type Response = ()

Source§

impl Command for SetShowFpsCounter

Source§

const METHOD: &'static str = "Overlay.setShowFPSCounter"

Source§

type Response = ()

Source§

impl Command for SetShowGridOverlays

Source§

const METHOD: &'static str = "Overlay.setShowGridOverlays"

Source§

type Response = ()

Source§

impl Command for SetShowHinge

Source§

const METHOD: &'static str = "Overlay.setShowHinge"

Source§

type Response = ()

Source§

impl Command for SetShowHitTestBorders

Source§

const METHOD: &'static str = "Overlay.setShowHitTestBorders"

Source§

type Response = ()

Source§

impl Command for SetShowIsolatedElements

Source§

const METHOD: &'static str = "Overlay.setShowIsolatedElements"

Source§

type Response = ()

Source§

impl Command for SetShowLayoutShiftRegions

Source§

const METHOD: &'static str = "Overlay.setShowLayoutShiftRegions"

Source§

type Response = ()

Source§

impl Command for SetShowPaintRects

Source§

const METHOD: &'static str = "Overlay.setShowPaintRects"

Source§

type Response = ()

Source§

impl Command for SetShowScrollBottleneckRects

Source§

const METHOD: &'static str = "Overlay.setShowScrollBottleneckRects"

Source§

type Response = ()

Source§

impl Command for SetShowScrollSnapOverlays

Source§

const METHOD: &'static str = "Overlay.setShowScrollSnapOverlays"

Source§

type Response = ()

Source§

impl Command for SetShowViewportSizeOnResize

Source§

const METHOD: &'static str = "Overlay.setShowViewportSizeOnResize"

Source§

type Response = ()

Source§

impl Command for SetShowWebVitals

Source§

const METHOD: &'static str = "Overlay.setShowWebVitals"

Source§

type Response = ()

Source§

impl Command for SetShowWindowControlsOverlay

Source§

const METHOD: &'static str = "Overlay.setShowWindowControlsOverlay"

Source§

type Response = ()

Source§

impl Command for AddCompilationCache

Source§

const METHOD: &'static str = "Page.addCompilationCache"

Source§

type Response = ()

Source§

impl Command for AddScriptToEvaluateOnLoad

Source§

const METHOD: &'static str = "Page.addScriptToEvaluateOnLoad"

Source§

type Response = AddScriptToEvaluateOnLoadResult

Source§

impl Command for AddScriptToEvaluateOnNewDocument

Source§

const METHOD: &'static str = "Page.addScriptToEvaluateOnNewDocument"

Source§

type Response = AddScriptToEvaluateOnNewDocumentResult

Source§

impl Command for BringToFront

Source§

const METHOD: &'static str = "Page.bringToFront"

Source§

type Response = ()

Source§

impl Command for CaptureScreenshot

Source§

const METHOD: &'static str = "Page.captureScreenshot"

Source§

type Response = CaptureScreenshotResult

Source§

impl Command for cdpkit::cdp::page::CaptureSnapshot

Source§

const METHOD: &'static str = "Page.captureSnapshot"

Source§

type Response = CaptureSnapshotResult

Source§

impl Command for ClearCompilationCache

Source§

const METHOD: &'static str = "Page.clearCompilationCache"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::page::ClearDeviceMetricsOverride

Source§

const METHOD: &'static str = "Page.clearDeviceMetricsOverride"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::page::ClearDeviceOrientationOverride

Source§

const METHOD: &'static str = "Page.clearDeviceOrientationOverride"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::page::ClearGeolocationOverride

Source§

const METHOD: &'static str = "Page.clearGeolocationOverride"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::page::Close

Source§

const METHOD: &'static str = "Page.close"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::page::Crash

Source§

const METHOD: &'static str = "Page.crash"

Source§

type Response = ()

Source§

impl Command for CreateIsolatedWorld

Source§

const METHOD: &'static str = "Page.createIsolatedWorld"

Source§

type Response = CreateIsolatedWorldResult

Source§

impl Command for DeleteCookie

Source§

const METHOD: &'static str = "Page.deleteCookie"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::page::Disable

Source§

const METHOD: &'static str = "Page.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::page::Enable

Source§

const METHOD: &'static str = "Page.enable"

Source§

type Response = ()

Source§

impl Command for GenerateTestReport

Source§

const METHOD: &'static str = "Page.generateTestReport"

Source§

type Response = ()

Source§

impl Command for GetAdScriptAncestry

Source§

const METHOD: &'static str = "Page.getAdScriptAncestry"

Source§

type Response = GetAdScriptAncestryResult

Source§

impl Command for GetAnnotatedPageContent

Source§

const METHOD: &'static str = "Page.getAnnotatedPageContent"

Source§

type Response = GetAnnotatedPageContentResult

Source§

impl Command for GetAppId

Source§

const METHOD: &'static str = "Page.getAppId"

Source§

type Response = GetAppIdResult

Source§

impl Command for GetAppManifest

Source§

const METHOD: &'static str = "Page.getAppManifest"

Source§

type Response = GetAppManifestResult

Source§

impl Command for GetFrameTree

Source§

const METHOD: &'static str = "Page.getFrameTree"

Source§

type Response = GetFrameTreeResult

Source§

impl Command for GetInstallabilityErrors

Source§

const METHOD: &'static str = "Page.getInstallabilityErrors"

Source§

type Response = GetInstallabilityErrorsResult

Source§

impl Command for GetLayoutMetrics

Source§

const METHOD: &'static str = "Page.getLayoutMetrics"

Source§

type Response = GetLayoutMetricsResult

Source§

impl Command for GetManifestIcons

Source§

const METHOD: &'static str = "Page.getManifestIcons"

Source§

type Response = GetManifestIconsResult

Source§

impl Command for GetNavigationHistory

Source§

const METHOD: &'static str = "Page.getNavigationHistory"

Source§

type Response = GetNavigationHistoryResult

Source§

impl Command for GetOriginTrials

Source§

const METHOD: &'static str = "Page.getOriginTrials"

Source§

type Response = GetOriginTrialsResult

Source§

impl Command for GetPermissionsPolicyState

Source§

const METHOD: &'static str = "Page.getPermissionsPolicyState"

Source§

type Response = GetPermissionsPolicyStateResult

Source§

impl Command for GetResourceContent

Source§

const METHOD: &'static str = "Page.getResourceContent"

Source§

type Response = GetResourceContentResult

Source§

impl Command for GetResourceTree

Source§

const METHOD: &'static str = "Page.getResourceTree"

Source§

type Response = GetResourceTreeResult

Source§

impl Command for HandleJavaScriptDialog

Source§

const METHOD: &'static str = "Page.handleJavaScriptDialog"

Source§

type Response = ()

Source§

impl Command for Navigate

Source§

const METHOD: &'static str = "Page.navigate"

Source§

type Response = NavigateResult

Source§

impl Command for NavigateToHistoryEntry

Source§

const METHOD: &'static str = "Page.navigateToHistoryEntry"

Source§

type Response = ()

Source§

impl Command for PrintToPdf

Source§

const METHOD: &'static str = "Page.printToPDF"

Source§

type Response = PrintToPdfResult

Source§

impl Command for ProduceCompilationCache

Source§

const METHOD: &'static str = "Page.produceCompilationCache"

Source§

type Response = ()

Source§

impl Command for Reload

Source§

const METHOD: &'static str = "Page.reload"

Source§

type Response = ()

Source§

impl Command for RemoveScriptToEvaluateOnLoad

Source§

const METHOD: &'static str = "Page.removeScriptToEvaluateOnLoad"

Source§

type Response = ()

Source§

impl Command for RemoveScriptToEvaluateOnNewDocument

Source§

const METHOD: &'static str = "Page.removeScriptToEvaluateOnNewDocument"

Source§

type Response = ()

Source§

impl Command for ResetNavigationHistory

Source§

const METHOD: &'static str = "Page.resetNavigationHistory"

Source§

type Response = ()

Source§

impl Command for ScreencastFrameAck

Source§

const METHOD: &'static str = "Page.screencastFrameAck"

Source§

type Response = ()

Source§

impl Command for SearchInResource

Source§

const METHOD: &'static str = "Page.searchInResource"

Source§

type Response = SearchInResourceResult

Source§

impl Command for SetAdBlockingEnabled

Source§

const METHOD: &'static str = "Page.setAdBlockingEnabled"

Source§

type Response = ()

Source§

impl Command for SetBypassCsp

Source§

const METHOD: &'static str = "Page.setBypassCSP"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::page::SetDeviceMetricsOverride

Source§

const METHOD: &'static str = "Page.setDeviceMetricsOverride"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::page::SetDeviceOrientationOverride

Source§

const METHOD: &'static str = "Page.setDeviceOrientationOverride"

Source§

type Response = ()

Source§

impl Command for SetDocumentContent

Source§

const METHOD: &'static str = "Page.setDocumentContent"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::page::SetDownloadBehavior

Source§

const METHOD: &'static str = "Page.setDownloadBehavior"

Source§

type Response = ()

Source§

impl Command for SetFontFamilies

Source§

const METHOD: &'static str = "Page.setFontFamilies"

Source§

type Response = ()

Source§

impl Command for SetFontSizes

Source§

const METHOD: &'static str = "Page.setFontSizes"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::page::SetGeolocationOverride

Source§

const METHOD: &'static str = "Page.setGeolocationOverride"

Source§

type Response = ()

Source§

impl Command for SetInterceptFileChooserDialog

Source§

const METHOD: &'static str = "Page.setInterceptFileChooserDialog"

Source§

type Response = ()

Source§

impl Command for SetLifecycleEventsEnabled

Source§

const METHOD: &'static str = "Page.setLifecycleEventsEnabled"

Source§

type Response = ()

Source§

impl Command for SetPrerenderingAllowed

Source§

const METHOD: &'static str = "Page.setPrerenderingAllowed"

Source§

type Response = ()

Source§

impl Command for SetRphRegistrationMode

Source§

const METHOD: &'static str = "Page.setRPHRegistrationMode"

Source§

type Response = ()

Source§

impl Command for SetSpcTransactionMode

Source§

const METHOD: &'static str = "Page.setSPCTransactionMode"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::page::SetTouchEmulationEnabled

Source§

const METHOD: &'static str = "Page.setTouchEmulationEnabled"

Source§

type Response = ()

Source§

impl Command for SetWebLifecycleState

Source§

const METHOD: &'static str = "Page.setWebLifecycleState"

Source§

type Response = ()

Source§

impl Command for StartScreencast

Source§

const METHOD: &'static str = "Page.startScreencast"

Source§

type Response = ()

Source§

impl Command for StopLoading

Source§

const METHOD: &'static str = "Page.stopLoading"

Source§

type Response = ()

Source§

impl Command for StopScreencast

Source§

const METHOD: &'static str = "Page.stopScreencast"

Source§

type Response = ()

Source§

impl Command for WaitForDebugger

Source§

const METHOD: &'static str = "Page.waitForDebugger"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::performance::Disable

Source§

const METHOD: &'static str = "Performance.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::performance::Enable

Source§

const METHOD: &'static str = "Performance.enable"

Source§

type Response = ()

Source§

impl Command for GetMetrics

Source§

const METHOD: &'static str = "Performance.getMetrics"

Source§

type Response = GetMetricsResult

Source§

impl Command for SetTimeDomain

Source§

const METHOD: &'static str = "Performance.setTimeDomain"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::performance_timeline::Enable

Source§

const METHOD: &'static str = "PerformanceTimeline.enable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::preload::Disable

Source§

const METHOD: &'static str = "Preload.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::preload::Enable

Source§

const METHOD: &'static str = "Preload.enable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::profiler::Disable

Source§

const METHOD: &'static str = "Profiler.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::profiler::Enable

Source§

const METHOD: &'static str = "Profiler.enable"

Source§

type Response = ()

Source§

impl Command for GetBestEffortCoverage

Source§

const METHOD: &'static str = "Profiler.getBestEffortCoverage"

Source§

type Response = GetBestEffortCoverageResult

Source§

impl Command for SetSamplingInterval

Source§

const METHOD: &'static str = "Profiler.setSamplingInterval"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::profiler::Start

Source§

const METHOD: &'static str = "Profiler.start"

Source§

type Response = ()

Source§

impl Command for StartPreciseCoverage

Source§

const METHOD: &'static str = "Profiler.startPreciseCoverage"

Source§

type Response = StartPreciseCoverageResult

Source§

impl Command for Stop

Source§

const METHOD: &'static str = "Profiler.stop"

Source§

type Response = StopResult

Source§

impl Command for StopPreciseCoverage

Source§

const METHOD: &'static str = "Profiler.stopPreciseCoverage"

Source§

type Response = ()

Source§

impl Command for TakePreciseCoverage

Source§

const METHOD: &'static str = "Profiler.takePreciseCoverage"

Source§

type Response = TakePreciseCoverageResult

Source§

impl Command for ChangeAppUserSettings

Source§

const METHOD: &'static str = "PWA.changeAppUserSettings"

Source§

type Response = ()

Source§

impl Command for GetOsAppState

Source§

const METHOD: &'static str = "PWA.getOsAppState"

Source§

type Response = GetOsAppStateResult

Source§

impl Command for Install

Source§

const METHOD: &'static str = "PWA.install"

Source§

type Response = ()

Source§

impl Command for Launch

Source§

const METHOD: &'static str = "PWA.launch"

Source§

type Response = LaunchResult

Source§

impl Command for LaunchFilesInApp

Source§

const METHOD: &'static str = "PWA.launchFilesInApp"

Source§

type Response = LaunchFilesInAppResult

Source§

impl Command for OpenCurrentPageInApp

Source§

const METHOD: &'static str = "PWA.openCurrentPageInApp"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::pwa::Uninstall

Source§

const METHOD: &'static str = "PWA.uninstall"

Source§

type Response = ()

Source§

impl Command for AddBinding

Source§

const METHOD: &'static str = "Runtime.addBinding"

Source§

type Response = ()

Source§

impl Command for AwaitPromise

Source§

const METHOD: &'static str = "Runtime.awaitPromise"

Source§

type Response = AwaitPromiseResult

Source§

impl Command for CallFunctionOn

Source§

const METHOD: &'static str = "Runtime.callFunctionOn"

Source§

type Response = CallFunctionOnResult

Source§

impl Command for CompileScript

Source§

const METHOD: &'static str = "Runtime.compileScript"

Source§

type Response = CompileScriptResult

Source§

impl Command for cdpkit::cdp::runtime::Disable

Source§

const METHOD: &'static str = "Runtime.disable"

Source§

type Response = ()

Source§

impl Command for DiscardConsoleEntries

Source§

const METHOD: &'static str = "Runtime.discardConsoleEntries"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::runtime::Enable

Source§

const METHOD: &'static str = "Runtime.enable"

Source§

type Response = ()

Source§

impl Command for Evaluate

Source§

const METHOD: &'static str = "Runtime.evaluate"

Source§

type Response = EvaluateResult

Source§

impl Command for GetExceptionDetails

Source§

const METHOD: &'static str = "Runtime.getExceptionDetails"

Source§

type Response = GetExceptionDetailsResult

Source§

impl Command for GetHeapUsage

Source§

const METHOD: &'static str = "Runtime.getHeapUsage"

Source§

type Response = GetHeapUsageResult

Source§

impl Command for GetIsolateId

Source§

const METHOD: &'static str = "Runtime.getIsolateId"

Source§

type Response = GetIsolateIdResult

Source§

impl Command for GetProperties

Source§

const METHOD: &'static str = "Runtime.getProperties"

Source§

type Response = GetPropertiesResult

Source§

impl Command for GlobalLexicalScopeNames

Source§

const METHOD: &'static str = "Runtime.globalLexicalScopeNames"

Source§

type Response = GlobalLexicalScopeNamesResult

Source§

impl Command for QueryObjects

Source§

const METHOD: &'static str = "Runtime.queryObjects"

Source§

type Response = QueryObjectsResult

Source§

impl Command for ReleaseObject

Source§

const METHOD: &'static str = "Runtime.releaseObject"

Source§

type Response = ()

Source§

impl Command for ReleaseObjectGroup

Source§

const METHOD: &'static str = "Runtime.releaseObjectGroup"

Source§

type Response = ()

Source§

impl Command for RemoveBinding

Source§

const METHOD: &'static str = "Runtime.removeBinding"

Source§

type Response = ()

Source§

impl Command for RunIfWaitingForDebugger

Source§

const METHOD: &'static str = "Runtime.runIfWaitingForDebugger"

Source§

type Response = ()

Source§

impl Command for RunScript

Source§

const METHOD: &'static str = "Runtime.runScript"

Source§

type Response = RunScriptResult

Source§

impl Command for cdpkit::cdp::runtime::SetAsyncCallStackDepth

Source§

const METHOD: &'static str = "Runtime.setAsyncCallStackDepth"

Source§

type Response = ()

Source§

impl Command for SetCustomObjectFormatterEnabled

Source§

const METHOD: &'static str = "Runtime.setCustomObjectFormatterEnabled"

Source§

type Response = ()

Source§

impl Command for SetMaxCallStackSizeToCapture

Source§

const METHOD: &'static str = "Runtime.setMaxCallStackSizeToCapture"

Source§

type Response = ()

Source§

impl Command for TerminateExecution

Source§

const METHOD: &'static str = "Runtime.terminateExecution"

Source§

type Response = ()

Source§

impl Command for GetDomains

Source§

const METHOD: &'static str = "Schema.getDomains"

Source§

type Response = GetDomainsResult

Source§

impl Command for cdpkit::cdp::security::Disable

Source§

const METHOD: &'static str = "Security.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::security::Enable

Source§

const METHOD: &'static str = "Security.enable"

Source§

type Response = ()

Source§

impl Command for HandleCertificateError

Source§

const METHOD: &'static str = "Security.handleCertificateError"

Source§

type Response = ()

Source§

impl Command for SetIgnoreCertificateErrors

Source§

const METHOD: &'static str = "Security.setIgnoreCertificateErrors"

Source§

type Response = ()

Source§

impl Command for SetOverrideCertificateErrors

Source§

const METHOD: &'static str = "Security.setOverrideCertificateErrors"

Source§

type Response = ()

Source§

impl Command for DeliverPushMessage

Source§

const METHOD: &'static str = "ServiceWorker.deliverPushMessage"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::serviceworker::Disable

Source§

const METHOD: &'static str = "ServiceWorker.disable"

Source§

type Response = ()

Source§

impl Command for DispatchPeriodicSyncEvent

Source§

const METHOD: &'static str = "ServiceWorker.dispatchPeriodicSyncEvent"

Source§

type Response = ()

Source§

impl Command for DispatchSyncEvent

Source§

const METHOD: &'static str = "ServiceWorker.dispatchSyncEvent"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::serviceworker::Enable

Source§

const METHOD: &'static str = "ServiceWorker.enable"

Source§

type Response = ()

Source§

impl Command for SetForceUpdateOnPageLoad

Source§

const METHOD: &'static str = "ServiceWorker.setForceUpdateOnPageLoad"

Source§

type Response = ()

Source§

impl Command for SkipWaiting

Source§

const METHOD: &'static str = "ServiceWorker.skipWaiting"

Source§

type Response = ()

Source§

impl Command for StartWorker

Source§

const METHOD: &'static str = "ServiceWorker.startWorker"

Source§

type Response = ()

Source§

impl Command for StopAllWorkers

Source§

const METHOD: &'static str = "ServiceWorker.stopAllWorkers"

Source§

type Response = ()

Source§

impl Command for StopWorker

Source§

const METHOD: &'static str = "ServiceWorker.stopWorker"

Source§

type Response = ()

Source§

impl Command for Unregister

Source§

const METHOD: &'static str = "ServiceWorker.unregister"

Source§

type Response = ()

Source§

impl Command for UpdateRegistration

Source§

const METHOD: &'static str = "ServiceWorker.updateRegistration"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::smart_card_emulation::Disable

Source§

const METHOD: &'static str = "SmartCardEmulation.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::smart_card_emulation::Enable

Source§

const METHOD: &'static str = "SmartCardEmulation.enable"

Source§

type Response = ()

Source§

impl Command for ReportBeginTransactionResult

Source§

const METHOD: &'static str = "SmartCardEmulation.reportBeginTransactionResult"

Source§

type Response = ()

Source§

impl Command for ReportConnectResult

Source§

const METHOD: &'static str = "SmartCardEmulation.reportConnectResult"

Source§

type Response = ()

Source§

impl Command for ReportDataResult

Source§

const METHOD: &'static str = "SmartCardEmulation.reportDataResult"

Source§

type Response = ()

Source§

impl Command for ReportError

Source§

const METHOD: &'static str = "SmartCardEmulation.reportError"

Source§

type Response = ()

Source§

impl Command for ReportEstablishContextResult

Source§

const METHOD: &'static str = "SmartCardEmulation.reportEstablishContextResult"

Source§

type Response = ()

Source§

impl Command for ReportGetStatusChangeResult

Source§

const METHOD: &'static str = "SmartCardEmulation.reportGetStatusChangeResult"

Source§

type Response = ()

Source§

impl Command for ReportListReadersResult

Source§

const METHOD: &'static str = "SmartCardEmulation.reportListReadersResult"

Source§

type Response = ()

Source§

impl Command for ReportPlainResult

Source§

const METHOD: &'static str = "SmartCardEmulation.reportPlainResult"

Source§

type Response = ()

Source§

impl Command for ReportReleaseContextResult

Source§

const METHOD: &'static str = "SmartCardEmulation.reportReleaseContextResult"

Source§

type Response = ()

Source§

impl Command for ReportStatusResult

Source§

const METHOD: &'static str = "SmartCardEmulation.reportStatusResult"

Source§

type Response = ()

Source§

impl Command for ClearCookies

Source§

const METHOD: &'static str = "Storage.clearCookies"

Source§

type Response = ()

Source§

impl Command for ClearDataForOrigin

Source§

const METHOD: &'static str = "Storage.clearDataForOrigin"

Source§

type Response = ()

Source§

impl Command for ClearDataForStorageKey

Source§

const METHOD: &'static str = "Storage.clearDataForStorageKey"

Source§

type Response = ()

Source§

impl Command for ClearSharedStorageEntries

Source§

const METHOD: &'static str = "Storage.clearSharedStorageEntries"

Source§

type Response = ()

Source§

impl Command for ClearTrustTokens

Source§

const METHOD: &'static str = "Storage.clearTrustTokens"

Source§

type Response = ClearTrustTokensResult

Source§

impl Command for DeleteSharedStorageEntry

Source§

const METHOD: &'static str = "Storage.deleteSharedStorageEntry"

Source§

type Response = ()

Source§

impl Command for DeleteStorageBucket

Source§

const METHOD: &'static str = "Storage.deleteStorageBucket"

Source§

type Response = ()

Source§

impl Command for GetAffectedUrlsForThirdPartyCookieMetadata

Source§

const METHOD: &'static str = "Storage.getAffectedUrlsForThirdPartyCookieMetadata"

Source§

type Response = GetAffectedUrlsForThirdPartyCookieMetadataResult

Source§

impl Command for cdpkit::cdp::storage::GetCookies

Source§

const METHOD: &'static str = "Storage.getCookies"

Source§

type Response = GetCookiesResult

Source§

impl Command for GetInterestGroupDetails

Source§

const METHOD: &'static str = "Storage.getInterestGroupDetails"

Source§

type Response = GetInterestGroupDetailsResult

Source§

impl Command for GetRelatedWebsiteSets

Source§

const METHOD: &'static str = "Storage.getRelatedWebsiteSets"

Source§

type Response = GetRelatedWebsiteSetsResult

Source§

impl Command for GetSharedStorageEntries

Source§

const METHOD: &'static str = "Storage.getSharedStorageEntries"

Source§

type Response = GetSharedStorageEntriesResult

Source§

impl Command for GetSharedStorageMetadata

Source§

const METHOD: &'static str = "Storage.getSharedStorageMetadata"

Source§

type Response = GetSharedStorageMetadataResult

Source§

impl Command for GetStorageKey

Source§

const METHOD: &'static str = "Storage.getStorageKey"

Source§

type Response = GetStorageKeyResult

Source§

impl Command for GetStorageKeyForFrame

Source§

const METHOD: &'static str = "Storage.getStorageKeyForFrame"

Source§

type Response = GetStorageKeyForFrameResult

Source§

impl Command for GetTrustTokens

Source§

const METHOD: &'static str = "Storage.getTrustTokens"

Source§

type Response = GetTrustTokensResult

Source§

impl Command for GetUsageAndQuota

Source§

const METHOD: &'static str = "Storage.getUsageAndQuota"

Source§

type Response = GetUsageAndQuotaResult

Source§

impl Command for OverrideQuotaForOrigin

Source§

const METHOD: &'static str = "Storage.overrideQuotaForOrigin"

Source§

type Response = ()

Source§

impl Command for ResetSharedStorageBudget

Source§

const METHOD: &'static str = "Storage.resetSharedStorageBudget"

Source§

type Response = ()

Source§

impl Command for RunBounceTrackingMitigations

Source§

const METHOD: &'static str = "Storage.runBounceTrackingMitigations"

Source§

type Response = RunBounceTrackingMitigationsResult

Source§

impl Command for SendPendingAttributionReports

Source§

const METHOD: &'static str = "Storage.sendPendingAttributionReports"

Source§

type Response = SendPendingAttributionReportsResult

Source§

impl Command for SetAttributionReportingLocalTestingMode

Source§

const METHOD: &'static str = "Storage.setAttributionReportingLocalTestingMode"

Source§

type Response = ()

Source§

impl Command for SetAttributionReportingTracking

Source§

const METHOD: &'static str = "Storage.setAttributionReportingTracking"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::storage::SetCookies

Source§

const METHOD: &'static str = "Storage.setCookies"

Source§

type Response = ()

Source§

impl Command for SetInterestGroupAuctionTracking

Source§

const METHOD: &'static str = "Storage.setInterestGroupAuctionTracking"

Source§

type Response = ()

Source§

impl Command for SetInterestGroupTracking

Source§

const METHOD: &'static str = "Storage.setInterestGroupTracking"

Source§

type Response = ()

Source§

impl Command for SetProtectedAudienceKAnonymity

Source§

const METHOD: &'static str = "Storage.setProtectedAudienceKAnonymity"

Source§

type Response = ()

Source§

impl Command for SetSharedStorageEntry

Source§

const METHOD: &'static str = "Storage.setSharedStorageEntry"

Source§

type Response = ()

Source§

impl Command for SetSharedStorageTracking

Source§

const METHOD: &'static str = "Storage.setSharedStorageTracking"

Source§

type Response = ()

Source§

impl Command for SetStorageBucketTracking

Source§

const METHOD: &'static str = "Storage.setStorageBucketTracking"

Source§

type Response = ()

Source§

impl Command for TrackCacheStorageForOrigin

Source§

const METHOD: &'static str = "Storage.trackCacheStorageForOrigin"

Source§

type Response = ()

Source§

impl Command for TrackCacheStorageForStorageKey

Source§

const METHOD: &'static str = "Storage.trackCacheStorageForStorageKey"

Source§

type Response = ()

Source§

impl Command for TrackIndexedDbForOrigin

Source§

const METHOD: &'static str = "Storage.trackIndexedDBForOrigin"

Source§

type Response = ()

Source§

impl Command for TrackIndexedDbForStorageKey

Source§

const METHOD: &'static str = "Storage.trackIndexedDBForStorageKey"

Source§

type Response = ()

Source§

impl Command for UntrackCacheStorageForOrigin

Source§

const METHOD: &'static str = "Storage.untrackCacheStorageForOrigin"

Source§

type Response = ()

Source§

impl Command for UntrackCacheStorageForStorageKey

Source§

const METHOD: &'static str = "Storage.untrackCacheStorageForStorageKey"

Source§

type Response = ()

Source§

impl Command for UntrackIndexedDbForOrigin

Source§

const METHOD: &'static str = "Storage.untrackIndexedDBForOrigin"

Source§

type Response = ()

Source§

impl Command for UntrackIndexedDbForStorageKey

Source§

const METHOD: &'static str = "Storage.untrackIndexedDBForStorageKey"

Source§

type Response = ()

Source§

impl Command for GetFeatureState

Source§

const METHOD: &'static str = "SystemInfo.getFeatureState"

Source§

type Response = GetFeatureStateResult

Source§

impl Command for GetInfo

Source§

const METHOD: &'static str = "SystemInfo.getInfo"

Source§

type Response = GetInfoResult

Source§

impl Command for GetProcessInfo

Source§

const METHOD: &'static str = "SystemInfo.getProcessInfo"

Source§

type Response = GetProcessInfoResult

Source§

impl Command for ActivateTarget

Source§

const METHOD: &'static str = "Target.activateTarget"

Source§

type Response = ()

Source§

impl Command for AttachToBrowserTarget

Source§

const METHOD: &'static str = "Target.attachToBrowserTarget"

Source§

type Response = AttachToBrowserTargetResult

Source§

impl Command for AttachToTarget

Source§

const METHOD: &'static str = "Target.attachToTarget"

Source§

type Response = AttachToTargetResult

Source§

impl Command for AutoAttachRelated

Source§

const METHOD: &'static str = "Target.autoAttachRelated"

Source§

type Response = ()

Source§

impl Command for CloseTarget

Source§

const METHOD: &'static str = "Target.closeTarget"

Source§

type Response = CloseTargetResult

Source§

impl Command for CreateBrowserContext

Source§

const METHOD: &'static str = "Target.createBrowserContext"

Source§

type Response = CreateBrowserContextResult

Source§

impl Command for CreateTarget

Source§

const METHOD: &'static str = "Target.createTarget"

Source§

type Response = CreateTargetResult

Source§

impl Command for DetachFromTarget

Source§

const METHOD: &'static str = "Target.detachFromTarget"

Source§

type Response = ()

Source§

impl Command for DisposeBrowserContext

Source§

const METHOD: &'static str = "Target.disposeBrowserContext"

Source§

type Response = ()

Source§

impl Command for ExposeDevToolsProtocol

Source§

const METHOD: &'static str = "Target.exposeDevToolsProtocol"

Source§

type Response = ()

Source§

impl Command for GetBrowserContexts

Source§

const METHOD: &'static str = "Target.getBrowserContexts"

Source§

type Response = GetBrowserContextsResult

Source§

impl Command for GetDevToolsTarget

Source§

const METHOD: &'static str = "Target.getDevToolsTarget"

Source§

type Response = GetDevToolsTargetResult

Source§

impl Command for GetTargetInfo

Source§

const METHOD: &'static str = "Target.getTargetInfo"

Source§

type Response = GetTargetInfoResult

Source§

impl Command for GetTargets

Source§

const METHOD: &'static str = "Target.getTargets"

Source§

type Response = GetTargetsResult

Source§

impl Command for OpenDevTools

Source§

const METHOD: &'static str = "Target.openDevTools"

Source§

type Response = OpenDevToolsResult

Source§

impl Command for SendMessageToTarget

Source§

const METHOD: &'static str = "Target.sendMessageToTarget"

Source§

type Response = ()

Source§

impl Command for SetAutoAttach

Source§

const METHOD: &'static str = "Target.setAutoAttach"

Source§

type Response = ()

Source§

impl Command for SetDiscoverTargets

Source§

const METHOD: &'static str = "Target.setDiscoverTargets"

Source§

type Response = ()

Source§

impl Command for SetRemoteLocations

Source§

const METHOD: &'static str = "Target.setRemoteLocations"

Source§

type Response = ()

Source§

impl Command for Bind

Source§

const METHOD: &'static str = "Tethering.bind"

Source§

type Response = ()

Source§

impl Command for Unbind

Source§

const METHOD: &'static str = "Tethering.unbind"

Source§

type Response = ()

Source§

impl Command for End

Source§

const METHOD: &'static str = "Tracing.end"

Source§

type Response = ()

Source§

impl Command for GetCategories

Source§

const METHOD: &'static str = "Tracing.getCategories"

Source§

type Response = GetCategoriesResult

Source§

impl Command for GetTrackEventDescriptor

Source§

const METHOD: &'static str = "Tracing.getTrackEventDescriptor"

Source§

type Response = GetTrackEventDescriptorResult

Source§

impl Command for RecordClockSyncMarker

Source§

const METHOD: &'static str = "Tracing.recordClockSyncMarker"

Source§

type Response = ()

Source§

impl Command for RequestMemoryDump

Source§

const METHOD: &'static str = "Tracing.requestMemoryDump"

Source§

type Response = RequestMemoryDumpResult

Source§

impl Command for cdpkit::cdp::tracing::Start

Source§

const METHOD: &'static str = "Tracing.start"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::web_audio::Disable

Source§

const METHOD: &'static str = "WebAudio.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::web_audio::Enable

Source§

const METHOD: &'static str = "WebAudio.enable"

Source§

type Response = ()

Source§

impl Command for GetRealtimeData

Source§

const METHOD: &'static str = "WebAudio.getRealtimeData"

Source§

type Response = GetRealtimeDataResult

Source§

impl Command for AddCredential

Source§

const METHOD: &'static str = "WebAuthn.addCredential"

Source§

type Response = ()

Source§

impl Command for AddVirtualAuthenticator

Source§

const METHOD: &'static str = "WebAuthn.addVirtualAuthenticator"

Source§

type Response = AddVirtualAuthenticatorResult

Source§

impl Command for ClearCredentials

Source§

const METHOD: &'static str = "WebAuthn.clearCredentials"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::web_authn::Disable

Source§

const METHOD: &'static str = "WebAuthn.disable"

Source§

type Response = ()

Source§

impl Command for cdpkit::cdp::web_authn::Enable

Source§

const METHOD: &'static str = "WebAuthn.enable"

Source§

type Response = ()

Source§

impl Command for GetCredential

Source§

const METHOD: &'static str = "WebAuthn.getCredential"

Source§

type Response = GetCredentialResult

Source§

impl Command for GetCredentials

Source§

const METHOD: &'static str = "WebAuthn.getCredentials"

Source§

type Response = GetCredentialsResult

Source§

impl Command for RemoveCredential

Source§

const METHOD: &'static str = "WebAuthn.removeCredential"

Source§

type Response = ()

Source§

impl Command for RemoveVirtualAuthenticator

Source§

const METHOD: &'static str = "WebAuthn.removeVirtualAuthenticator"

Source§

type Response = ()

Source§

impl Command for SetAutomaticPresenceSimulation

Source§

const METHOD: &'static str = "WebAuthn.setAutomaticPresenceSimulation"

Source§

type Response = ()

Source§

impl Command for SetCredentialProperties

Source§

const METHOD: &'static str = "WebAuthn.setCredentialProperties"

Source§

type Response = ()

Source§

impl Command for SetResponseOverrideBits

Source§

const METHOD: &'static str = "WebAuthn.setResponseOverrideBits"

Source§

type Response = ()

Source§

impl Command for SetUserVerified

Source§

const METHOD: &'static str = "WebAuthn.setUserVerified"

Source§

type Response = ()