Command

Trait Command 

Source
pub trait Command: Serialize {
    type Return: for<'a> Deserialize<'a>;

    const METHOD: &'static str;

    // Provided method
    fn into_request(
        self,
        session_id: Option<SessionId>,
        id: u32,
    ) -> Request<Self>
       where Self: Sized { ... }
}
Expand description

Chrome DevTools Protocol Command.

Required Associated Constants§

Source

const METHOD: &'static str

Command method name.

Required Associated Types§

Source

type Return: for<'a> Deserialize<'a>

Return type.

Provided Methods§

Source

fn into_request(self, session_id: Option<SessionId>, id: u32) -> Request<Self>
where Self: Sized,

Into command request.

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 chrome_remote_interface_model::accessibility::DisableCommand

Available on crate features experimental and Accessibility and DOM only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::accessibility::EnableCommand

Available on crate features experimental and Accessibility and DOM only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for GetChildAxNodesCommand

Available on crate features experimental and Accessibility and DOM only.
Source§

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

Source§

type Return = GetChildAxNodesReturn

Source§

impl Command for GetFullAxTreeCommand

Available on crate features experimental and Accessibility and DOM only.
Source§

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

Source§

type Return = GetFullAxTreeReturn

Source§

impl Command for GetPartialAxTreeCommand

Available on crate features experimental and Accessibility and DOM only.
Source§

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

Source§

type Return = GetPartialAxTreeReturn

Source§

impl Command for QueryAxTreeCommand

Available on crate features experimental and Accessibility and DOM only.
Source§

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

Source§

type Return = QueryAxTreeReturn

Source§

impl Command for chrome_remote_interface_model::animation::DisableCommand

Available on crate features experimental and Animation and Runtime and DOM only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::animation::EnableCommand

Available on crate features experimental and Animation and Runtime and DOM only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for GetCurrentTimeCommand

Available on crate features experimental and Animation and Runtime and DOM only.
Source§

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

Source§

type Return = GetCurrentTimeReturn

Source§

impl Command for GetPlaybackRateCommand

Available on crate features experimental and Animation and Runtime and DOM only.
Source§

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

Source§

type Return = GetPlaybackRateReturn

Source§

impl Command for ReleaseAnimationsCommand

Available on crate features experimental and Animation and Runtime and DOM only.
Source§

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

Source§

type Return = ReleaseAnimationsReturn

Source§

impl Command for ResolveAnimationCommand

Available on crate features experimental and Animation and Runtime and DOM only.
Source§

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

Source§

type Return = ResolveAnimationReturn

Source§

impl Command for SeekAnimationsCommand

Available on crate features experimental and Animation and Runtime and DOM only.
Source§

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

Source§

type Return = SeekAnimationsReturn

Source§

impl Command for SetPausedCommand

Available on crate features experimental and Animation and Runtime and DOM only.
Source§

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

Source§

type Return = SetPausedReturn

Source§

impl Command for SetPlaybackRateCommand

Available on crate features experimental and Animation and Runtime and DOM only.
Source§

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

Source§

type Return = SetPlaybackRateReturn

Source§

impl Command for SetTimingCommand

Available on crate features experimental and Animation and Runtime and DOM only.
Source§

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

Source§

type Return = SetTimingReturn

Source§

impl Command for chrome_remote_interface_model::application_cache::EnableCommand

Available on crate features experimental and ApplicationCache and Page only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for GetApplicationCacheForFrameCommand

Available on crate features experimental and ApplicationCache and Page only.
Source§

const METHOD: &'static str = "ApplicationCache.getApplicationCacheForFrame"

Source§

type Return = GetApplicationCacheForFrameReturn

Source§

impl Command for GetFramesWithManifestsCommand

Available on crate features experimental and ApplicationCache and Page only.
Source§

const METHOD: &'static str = "ApplicationCache.getFramesWithManifests"

Source§

type Return = GetFramesWithManifestsReturn

Source§

impl Command for GetManifestForFrameCommand

Available on crate features experimental and ApplicationCache and Page only.
Source§

const METHOD: &'static str = "ApplicationCache.getManifestForFrame"

Source§

type Return = GetManifestForFrameReturn

Source§

impl Command for CheckContrastCommand

Available on crate features experimental and Audits and Network only.
Source§

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

Source§

type Return = CheckContrastReturn

Source§

impl Command for chrome_remote_interface_model::audits::DisableCommand

Available on crate features experimental and Audits and Network only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::audits::EnableCommand

Available on crate features experimental and Audits and Network only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for GetEncodedResponseCommand

Available on crate features experimental and Audits and Network only.
Source§

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

Source§

type Return = GetEncodedResponseReturn

Source§

impl Command for ClearEventsCommand

Available on crate features experimental and BackgroundService only.
Source§

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

Source§

type Return = ClearEventsReturn

Source§

impl Command for SetRecordingCommand

Available on crate features experimental and BackgroundService only.
Source§

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

Source§

type Return = SetRecordingReturn

Source§

impl Command for StartObservingCommand

Available on crate features experimental and BackgroundService only.
Source§

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

Source§

type Return = StartObservingReturn

Source§

impl Command for StopObservingCommand

Available on crate features experimental and BackgroundService only.
Source§

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

Source§

type Return = StopObservingReturn

Source§

impl Command for CancelDownloadCommand

Available on crate feature Browser only.
Source§

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

Source§

type Return = CancelDownloadReturn

Source§

impl Command for chrome_remote_interface_model::browser::CloseCommand

Available on crate feature Browser only.
Source§

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

Source§

type Return = CloseReturn

Source§

impl Command for chrome_remote_interface_model::browser::CrashCommand

Available on crate feature Browser only.
Source§

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

Source§

type Return = CrashReturn

Source§

impl Command for CrashGpuProcessCommand

Available on crate feature Browser only.
Source§

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

Source§

type Return = CrashGpuProcessReturn

Source§

impl Command for ExecuteBrowserCommandCommand

Available on crate feature Browser only.
Source§

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

Source§

type Return = ExecuteBrowserCommandReturn

Source§

impl Command for GetBrowserCommandLineCommand

Available on crate feature Browser only.
Source§

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

Source§

type Return = GetBrowserCommandLineReturn

Source§

impl Command for GetHistogramCommand

Available on crate feature Browser only.
Source§

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

Source§

type Return = GetHistogramReturn

Source§

impl Command for GetHistogramsCommand

Available on crate feature Browser only.
Source§

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

Source§

type Return = GetHistogramsReturn

Source§

impl Command for GetVersionCommand

Available on crate feature Browser only.
Source§

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

Source§

type Return = GetVersionReturn

Source§

impl Command for GetWindowBoundsCommand

Available on crate feature Browser only.
Source§

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

Source§

type Return = GetWindowBoundsReturn

Source§

impl Command for GetWindowForTargetCommand

Available on crate feature Browser only.
Source§

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

Source§

type Return = GetWindowForTargetReturn

Source§

impl Command for GrantPermissionsCommand

Available on crate feature Browser only.
Source§

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

Source§

type Return = GrantPermissionsReturn

Source§

impl Command for ResetPermissionsCommand

Available on crate feature Browser only.
Source§

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

Source§

type Return = ResetPermissionsReturn

Source§

impl Command for SetDockTileCommand

Available on crate feature Browser only.
Source§

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

Source§

type Return = SetDockTileReturn

Source§

impl Command for chrome_remote_interface_model::browser::SetDownloadBehaviorCommand

Available on crate feature Browser only.
Source§

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

Source§

type Return = SetDownloadBehaviorReturn

Source§

impl Command for SetPermissionCommand

Available on crate feature Browser only.
Source§

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

Source§

type Return = SetPermissionReturn

Source§

impl Command for SetWindowBoundsCommand

Available on crate feature Browser only.
Source§

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

Source§

type Return = SetWindowBoundsReturn

Source§

impl Command for DeleteCacheCommand

Available on crate features experimental and CacheStorage only.
Source§

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

Source§

type Return = DeleteCacheReturn

Source§

impl Command for DeleteEntryCommand

Available on crate features experimental and CacheStorage only.
Source§

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

Source§

type Return = DeleteEntryReturn

Source§

impl Command for RequestCacheNamesCommand

Available on crate features experimental and CacheStorage only.
Source§

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

Source§

type Return = RequestCacheNamesReturn

Source§

impl Command for RequestCachedResponseCommand

Available on crate features experimental and CacheStorage only.
Source§

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

Source§

type Return = RequestCachedResponseReturn

Source§

impl Command for RequestEntriesCommand

Available on crate features experimental and CacheStorage only.
Source§

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

Source§

type Return = RequestEntriesReturn

Source§

impl Command for chrome_remote_interface_model::cast::DisableCommand

Available on crate features experimental and Cast only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::cast::EnableCommand

Available on crate features experimental and Cast only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for SetSinkToUseCommand

Available on crate features experimental and Cast only.
Source§

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

Source§

type Return = SetSinkToUseReturn

Source§

impl Command for StartTabMirroringCommand

Available on crate features experimental and Cast only.
Source§

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

Source§

type Return = StartTabMirroringReturn

Source§

impl Command for StopCastingCommand

Available on crate features experimental and Cast only.
Source§

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

Source§

type Return = StopCastingReturn

Source§

impl Command for ClearMessagesCommand

Available on crate features Console and Runtime only.
Source§

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

Source§

type Return = ClearMessagesReturn

Source§

impl Command for chrome_remote_interface_model::console::DisableCommand

Available on crate features Console and Runtime only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::console::EnableCommand

Available on crate features Console and Runtime only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for AddRuleCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = AddRuleReturn

Source§

impl Command for CollectClassNamesCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = CollectClassNamesReturn

Source§

impl Command for CreateStyleSheetCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = CreateStyleSheetReturn

Source§

impl Command for chrome_remote_interface_model::css::DisableCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::css::EnableCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for ForcePseudoStateCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = ForcePseudoStateReturn

Source§

impl Command for GetBackgroundColorsCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = GetBackgroundColorsReturn

Source§

impl Command for GetComputedStyleForNodeCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = GetComputedStyleForNodeReturn

Source§

impl Command for GetInlineStylesForNodeCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = GetInlineStylesForNodeReturn

Source§

impl Command for GetMatchedStylesForNodeCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = GetMatchedStylesForNodeReturn

Source§

impl Command for GetMediaQueriesCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = GetMediaQueriesReturn

Source§

impl Command for GetPlatformFontsForNodeCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = GetPlatformFontsForNodeReturn

Source§

impl Command for GetStyleSheetTextCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = GetStyleSheetTextReturn

Source§

impl Command for SetEffectivePropertyValueForNodeCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = SetEffectivePropertyValueForNodeReturn

Source§

impl Command for SetKeyframeKeyCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = SetKeyframeKeyReturn

Source§

impl Command for SetLocalFontsEnabledCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = SetLocalFontsEnabledReturn

Source§

impl Command for SetMediaTextCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = SetMediaTextReturn

Source§

impl Command for SetRuleSelectorCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = SetRuleSelectorReturn

Source§

impl Command for SetStyleSheetTextCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = SetStyleSheetTextReturn

Source§

impl Command for SetStyleTextsCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = SetStyleTextsReturn

Source§

impl Command for StartRuleUsageTrackingCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = StartRuleUsageTrackingReturn

Source§

impl Command for StopRuleUsageTrackingCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = StopRuleUsageTrackingReturn

Source§

impl Command for TakeComputedStyleUpdatesCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = TakeComputedStyleUpdatesReturn

Source§

impl Command for TakeCoverageDeltaCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = TakeCoverageDeltaReturn

Source§

impl Command for TrackComputedStyleUpdatesCommand

Available on crate features experimental and CSS and DOM and Page only.
Source§

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

Source§

type Return = TrackComputedStyleUpdatesReturn

Source§

impl Command for chrome_remote_interface_model::database::DisableCommand

Available on crate features experimental and Database only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::database::EnableCommand

Available on crate features experimental and Database only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for ExecuteSqlCommand

Available on crate features experimental and Database only.
Source§

const METHOD: &'static str = "Database.executeSQL"

Source§

type Return = ExecuteSqlReturn

Source§

impl Command for GetDatabaseTableNamesCommand

Available on crate features experimental and Database only.
Source§

const METHOD: &'static str = "Database.getDatabaseTableNames"

Source§

type Return = GetDatabaseTableNamesReturn

Source§

impl Command for ContinueToLocationCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = ContinueToLocationReturn

Source§

impl Command for chrome_remote_interface_model::debugger::DisableCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::debugger::EnableCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for EvaluateOnCallFrameCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = EvaluateOnCallFrameReturn

Source§

impl Command for GetPossibleBreakpointsCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = GetPossibleBreakpointsReturn

Source§

impl Command for GetScriptSourceCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = GetScriptSourceReturn

Source§

impl Command for GetStackTraceCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = GetStackTraceReturn

Source§

impl Command for GetWasmBytecodeCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = GetWasmBytecodeReturn

Source§

impl Command for PauseCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = PauseReturn

Source§

impl Command for PauseOnAsyncCallCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = PauseOnAsyncCallReturn

Source§

impl Command for RemoveBreakpointCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = RemoveBreakpointReturn

Source§

impl Command for RestartFrameCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = RestartFrameReturn

Source§

impl Command for ResumeCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = ResumeReturn

Source§

impl Command for SearchInContentCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = SearchInContentReturn

Source§

impl Command for chrome_remote_interface_model::debugger::SetAsyncCallStackDepthCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = SetAsyncCallStackDepthReturn

Source§

impl Command for SetBlackboxPatternsCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = SetBlackboxPatternsReturn

Source§

impl Command for SetBlackboxedRangesCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = SetBlackboxedRangesReturn

Source§

impl Command for SetBreakpointByUrlCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = SetBreakpointByUrlReturn

Source§

impl Command for SetBreakpointCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = SetBreakpointReturn

Source§

impl Command for SetBreakpointOnFunctionCallCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = SetBreakpointOnFunctionCallReturn

Source§

impl Command for SetBreakpointsActiveCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = SetBreakpointsActiveReturn

Source§

impl Command for chrome_remote_interface_model::debugger::SetInstrumentationBreakpointCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = SetInstrumentationBreakpointReturn

Source§

impl Command for SetPauseOnExceptionsCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = SetPauseOnExceptionsReturn

Source§

impl Command for SetReturnValueCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = SetReturnValueReturn

Source§

impl Command for SetScriptSourceCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = SetScriptSourceReturn

Source§

impl Command for SetSkipAllPausesCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = SetSkipAllPausesReturn

Source§

impl Command for SetVariableValueCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = SetVariableValueReturn

Source§

impl Command for StepIntoCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = StepIntoReturn

Source§

impl Command for StepOutCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = StepOutReturn

Source§

impl Command for StepOverCommand

Available on crate features Debugger and Runtime only.
Source§

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

Source§

type Return = StepOverReturn

Source§

impl Command for chrome_remote_interface_model::device_orientation::ClearDeviceOrientationOverrideCommand

Available on crate features experimental and DeviceOrientation only.
Source§

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

Source§

type Return = ClearDeviceOrientationOverrideReturn

Source§

impl Command for chrome_remote_interface_model::device_orientation::SetDeviceOrientationOverrideCommand

Available on crate features experimental and DeviceOrientation only.
Source§

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

Source§

type Return = SetDeviceOrientationOverrideReturn

Source§

impl Command for CollectClassNamesFromSubtreeCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = CollectClassNamesFromSubtreeReturn

Source§

impl Command for CopyToCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = CopyToReturn

Source§

impl Command for DescribeNodeCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = DescribeNodeReturn

Source§

impl Command for chrome_remote_interface_model::dom::DisableCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for DiscardSearchResultsCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = DiscardSearchResultsReturn

Source§

impl Command for chrome_remote_interface_model::dom::EnableCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for FocusCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = FocusReturn

Source§

impl Command for GetAttributesCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = GetAttributesReturn

Source§

impl Command for GetBoxModelCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = GetBoxModelReturn

Source§

impl Command for GetContentQuadsCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = GetContentQuadsReturn

Source§

impl Command for GetDocumentCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = GetDocumentReturn

Source§

impl Command for GetFileInfoCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = GetFileInfoReturn

Source§

impl Command for GetFlattenedDocumentCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = GetFlattenedDocumentReturn

Source§

impl Command for GetFrameOwnerCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = GetFrameOwnerReturn

Source§

impl Command for GetNodeForLocationCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = GetNodeForLocationReturn

Source§

impl Command for GetNodeStackTracesCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = GetNodeStackTracesReturn

Source§

impl Command for GetNodesForSubtreeByStyleCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = GetNodesForSubtreeByStyleReturn

Source§

impl Command for GetOuterHtmlCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = GetOuterHtmlReturn

Source§

impl Command for GetRelayoutBoundaryCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = GetRelayoutBoundaryReturn

Source§

impl Command for GetSearchResultsCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = GetSearchResultsReturn

Source§

impl Command for chrome_remote_interface_model::dom::HideHighlightCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = HideHighlightReturn

Source§

impl Command for chrome_remote_interface_model::dom::HighlightNodeCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = HighlightNodeReturn

Source§

impl Command for chrome_remote_interface_model::dom::HighlightRectCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = HighlightRectReturn

Source§

impl Command for MarkUndoableStateCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = MarkUndoableStateReturn

Source§

impl Command for MoveToCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = MoveToReturn

Source§

impl Command for PerformSearchCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = PerformSearchReturn

Source§

impl Command for PushNodeByPathToFrontendCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = PushNodeByPathToFrontendReturn

Source§

impl Command for PushNodesByBackendIdsToFrontendCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = PushNodesByBackendIdsToFrontendReturn

Source§

impl Command for QuerySelectorAllCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = QuerySelectorAllReturn

Source§

impl Command for QuerySelectorCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = QuerySelectorReturn

Source§

impl Command for RedoCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = RedoReturn

Source§

impl Command for RemoveAttributeCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = RemoveAttributeReturn

Source§

impl Command for RemoveNodeCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = RemoveNodeReturn

Source§

impl Command for RequestChildNodesCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = RequestChildNodesReturn

Source§

impl Command for RequestNodeCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = RequestNodeReturn

Source§

impl Command for ResolveNodeCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = ResolveNodeReturn

Source§

impl Command for ScrollIntoViewIfNeededCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = ScrollIntoViewIfNeededReturn

Source§

impl Command for SetAttributeValueCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = SetAttributeValueReturn

Source§

impl Command for SetAttributesAsTextCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = SetAttributesAsTextReturn

Source§

impl Command for SetFileInputFilesCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = SetFileInputFilesReturn

Source§

impl Command for SetInspectedNodeCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = SetInspectedNodeReturn

Source§

impl Command for SetNodeNameCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = SetNodeNameReturn

Source§

impl Command for SetNodeStackTracesEnabledCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = SetNodeStackTracesEnabledReturn

Source§

impl Command for SetNodeValueCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = SetNodeValueReturn

Source§

impl Command for SetOuterHtmlCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = SetOuterHtmlReturn

Source§

impl Command for UndoCommand

Available on crate features DOM and Runtime only.
Source§

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

Source§

type Return = UndoReturn

Source§

impl Command for GetEventListenersCommand

Available on crate features DOMDebugger and DOM and Debugger and Runtime only.
Source§

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

Source§

type Return = GetEventListenersReturn

Source§

impl Command for RemoveDomBreakpointCommand

Available on crate features DOMDebugger and DOM and Debugger and Runtime only.
Source§

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

Source§

type Return = RemoveDomBreakpointReturn

Source§

impl Command for RemoveEventListenerBreakpointCommand

Available on crate features DOMDebugger and DOM and Debugger and Runtime only.
Source§

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

Source§

type Return = RemoveEventListenerBreakpointReturn

Source§

impl Command for RemoveInstrumentationBreakpointCommand

Available on crate features DOMDebugger and DOM and Debugger and Runtime only.
Source§

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

Source§

type Return = RemoveInstrumentationBreakpointReturn

Source§

impl Command for RemoveXhrBreakpointCommand

Available on crate features DOMDebugger and DOM and Debugger and Runtime only.
Source§

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

Source§

type Return = RemoveXhrBreakpointReturn

Source§

impl Command for SetBreakOnCspViolationCommand

Available on crate features DOMDebugger and DOM and Debugger and Runtime only.
Source§

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

Source§

type Return = SetBreakOnCspViolationReturn

Source§

impl Command for SetDomBreakpointCommand

Available on crate features DOMDebugger and DOM and Debugger and Runtime only.
Source§

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

Source§

type Return = SetDomBreakpointReturn

Source§

impl Command for SetEventListenerBreakpointCommand

Available on crate features DOMDebugger and DOM and Debugger and Runtime only.
Source§

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

Source§

type Return = SetEventListenerBreakpointReturn

Source§

impl Command for chrome_remote_interface_model::dom_debugger::SetInstrumentationBreakpointCommand

Available on crate features DOMDebugger and DOM and Debugger and Runtime only.
Source§

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

Source§

type Return = SetInstrumentationBreakpointReturn

Source§

impl Command for SetXhrBreakpointCommand

Available on crate features DOMDebugger and DOM and Debugger and Runtime only.
Source§

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

Source§

type Return = SetXhrBreakpointReturn

Source§

impl Command for chrome_remote_interface_model::dom_snapshot::CaptureSnapshotCommand

Available on crate features experimental and DOMSnapshot and CSS and DOM and DOMDebugger and Page only.
Source§

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

Source§

type Return = CaptureSnapshotReturn

Source§

impl Command for chrome_remote_interface_model::dom_snapshot::DisableCommand

Available on crate features experimental and DOMSnapshot and CSS and DOM and DOMDebugger and Page only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::dom_snapshot::EnableCommand

Available on crate features experimental and DOMSnapshot and CSS and DOM and DOMDebugger and Page only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for GetSnapshotCommand

Available on crate features experimental and DOMSnapshot and CSS and DOM and DOMDebugger and Page only.
Source§

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

Source§

type Return = GetSnapshotReturn

Source§

impl Command for chrome_remote_interface_model::dom_storage::ClearCommand

Available on crate features experimental and DOMStorage only.
Source§

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

Source§

type Return = ClearReturn

Source§

impl Command for chrome_remote_interface_model::dom_storage::DisableCommand

Available on crate features experimental and DOMStorage only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::dom_storage::EnableCommand

Available on crate features experimental and DOMStorage only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for GetDomStorageItemsCommand

Available on crate features experimental and DOMStorage only.
Source§

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

Source§

type Return = GetDomStorageItemsReturn

Source§

impl Command for RemoveDomStorageItemCommand

Available on crate features experimental and DOMStorage only.
Source§

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

Source§

type Return = RemoveDomStorageItemReturn

Source§

impl Command for SetDomStorageItemCommand

Available on crate features experimental and DOMStorage only.
Source§

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

Source§

type Return = SetDomStorageItemReturn

Source§

impl Command for CanEmulateCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = CanEmulateReturn

Source§

impl Command for chrome_remote_interface_model::emulation::ClearDeviceMetricsOverrideCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = ClearDeviceMetricsOverrideReturn

Source§

impl Command for chrome_remote_interface_model::emulation::ClearGeolocationOverrideCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = ClearGeolocationOverrideReturn

Source§

impl Command for ClearIdleOverrideCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = ClearIdleOverrideReturn

Source§

impl Command for ResetPageScaleFactorCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = ResetPageScaleFactorReturn

Source§

impl Command for SetCpuThrottlingRateCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetCpuThrottlingRateReturn

Source§

impl Command for SetDefaultBackgroundColorOverrideCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetDefaultBackgroundColorOverrideReturn

Source§

impl Command for chrome_remote_interface_model::emulation::SetDeviceMetricsOverrideCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetDeviceMetricsOverrideReturn

Source§

impl Command for SetDisabledImageTypesCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetDisabledImageTypesReturn

Source§

impl Command for SetDocumentCookieDisabledCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetDocumentCookieDisabledReturn

Source§

impl Command for SetEmitTouchEventsForMouseCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetEmitTouchEventsForMouseReturn

Source§

impl Command for SetEmulatedMediaCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetEmulatedMediaReturn

Source§

impl Command for SetEmulatedVisionDeficiencyCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetEmulatedVisionDeficiencyReturn

Source§

impl Command for SetFocusEmulationEnabledCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetFocusEmulationEnabledReturn

Source§

impl Command for chrome_remote_interface_model::emulation::SetGeolocationOverrideCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetGeolocationOverrideReturn

Source§

impl Command for SetIdleOverrideCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetIdleOverrideReturn

Source§

impl Command for SetLocaleOverrideCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetLocaleOverrideReturn

Source§

impl Command for SetNavigatorOverridesCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetNavigatorOverridesReturn

Source§

impl Command for SetPageScaleFactorCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetPageScaleFactorReturn

Source§

impl Command for SetScriptExecutionDisabledCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetScriptExecutionDisabledReturn

Source§

impl Command for SetScrollbarsHiddenCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetScrollbarsHiddenReturn

Source§

impl Command for SetTimezoneOverrideCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetTimezoneOverrideReturn

Source§

impl Command for chrome_remote_interface_model::emulation::SetTouchEmulationEnabledCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetTouchEmulationEnabledReturn

Source§

impl Command for chrome_remote_interface_model::emulation::SetUserAgentOverrideCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetUserAgentOverrideReturn

Source§

impl Command for SetVirtualTimePolicyCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetVirtualTimePolicyReturn

Source§

impl Command for SetVisibleSizeCommand

Available on crate features Emulation and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetVisibleSizeReturn

Source§

impl Command for ContinueRequestCommand

Available on crate features Fetch and Network and IO and Page only.
Source§

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

Source§

type Return = ContinueRequestReturn

Source§

impl Command for ContinueWithAuthCommand

Available on crate features Fetch and Network and IO and Page only.
Source§

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

Source§

type Return = ContinueWithAuthReturn

Source§

impl Command for chrome_remote_interface_model::fetch::DisableCommand

Available on crate features Fetch and Network and IO and Page only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::fetch::EnableCommand

Available on crate features Fetch and Network and IO and Page only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for FailRequestCommand

Available on crate features Fetch and Network and IO and Page only.
Source§

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

Source§

type Return = FailRequestReturn

Source§

impl Command for FulfillRequestCommand

Available on crate features Fetch and Network and IO and Page only.
Source§

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

Source§

type Return = FulfillRequestReturn

Source§

impl Command for chrome_remote_interface_model::fetch::GetResponseBodyCommand

Available on crate features Fetch and Network and IO and Page only.
Source§

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

Source§

type Return = GetResponseBodyReturn

Source§

impl Command for TakeResponseBodyAsStreamCommand

Available on crate features Fetch and Network and IO and Page only.
Source§

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

Source§

type Return = TakeResponseBodyAsStreamReturn

Source§

impl Command for BeginFrameCommand

Available on crate features experimental and HeadlessExperimental and Page and Runtime only.
Source§

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

Source§

type Return = BeginFrameReturn

Source§

impl Command for chrome_remote_interface_model::headless_experimental::DisableCommand

Available on crate features experimental and HeadlessExperimental and Page and Runtime only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::headless_experimental::EnableCommand

Available on crate features experimental and HeadlessExperimental and Page and Runtime only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for AddInspectedHeapObjectCommand

Available on crate features experimental and HeapProfiler and Runtime only.
Source§

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

Source§

type Return = AddInspectedHeapObjectReturn

Source§

impl Command for CollectGarbageCommand

Available on crate features experimental and HeapProfiler and Runtime only.
Source§

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

Source§

type Return = CollectGarbageReturn

Source§

impl Command for chrome_remote_interface_model::heap_profiler::DisableCommand

Available on crate features experimental and HeapProfiler and Runtime only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::heap_profiler::EnableCommand

Available on crate features experimental and HeapProfiler and Runtime only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for GetHeapObjectIdCommand

Available on crate features experimental and HeapProfiler and Runtime only.
Source§

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

Source§

type Return = GetHeapObjectIdReturn

Source§

impl Command for GetObjectByHeapObjectIdCommand

Available on crate features experimental and HeapProfiler and Runtime only.
Source§

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

Source§

type Return = GetObjectByHeapObjectIdReturn

Source§

impl Command for chrome_remote_interface_model::heap_profiler::GetSamplingProfileCommand

Available on crate features experimental and HeapProfiler and Runtime only.
Source§

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

Source§

type Return = GetSamplingProfileReturn

Source§

impl Command for chrome_remote_interface_model::heap_profiler::StartSamplingCommand

Available on crate features experimental and HeapProfiler and Runtime only.
Source§

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

Source§

type Return = StartSamplingReturn

Source§

impl Command for StartTrackingHeapObjectsCommand

Available on crate features experimental and HeapProfiler and Runtime only.
Source§

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

Source§

type Return = StartTrackingHeapObjectsReturn

Source§

impl Command for chrome_remote_interface_model::heap_profiler::StopSamplingCommand

Available on crate features experimental and HeapProfiler and Runtime only.
Source§

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

Source§

type Return = StopSamplingReturn

Source§

impl Command for StopTrackingHeapObjectsCommand

Available on crate features experimental and HeapProfiler and Runtime only.
Source§

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

Source§

type Return = StopTrackingHeapObjectsReturn

Source§

impl Command for TakeHeapSnapshotCommand

Available on crate features experimental and HeapProfiler and Runtime only.
Source§

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

Source§

type Return = TakeHeapSnapshotReturn

Source§

impl Command for ClearObjectStoreCommand

Available on crate features experimental and IndexedDB and Runtime only.
Source§

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

Source§

type Return = ClearObjectStoreReturn

Source§

impl Command for DeleteDatabaseCommand

Available on crate features experimental and IndexedDB and Runtime only.
Source§

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

Source§

type Return = DeleteDatabaseReturn

Source§

impl Command for DeleteObjectStoreEntriesCommand

Available on crate features experimental and IndexedDB and Runtime only.
Source§

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

Source§

type Return = DeleteObjectStoreEntriesReturn

Source§

impl Command for chrome_remote_interface_model::indexed_db::DisableCommand

Available on crate features experimental and IndexedDB and Runtime only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::indexed_db::EnableCommand

Available on crate features experimental and IndexedDB and Runtime only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for GetMetadataCommand

Available on crate features experimental and IndexedDB and Runtime only.
Source§

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

Source§

type Return = GetMetadataReturn

Source§

impl Command for RequestDataCommand

Available on crate features experimental and IndexedDB and Runtime only.
Source§

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

Source§

type Return = RequestDataReturn

Source§

impl Command for RequestDatabaseCommand

Available on crate features experimental and IndexedDB and Runtime only.
Source§

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

Source§

type Return = RequestDatabaseReturn

Source§

impl Command for RequestDatabaseNamesCommand

Available on crate features experimental and IndexedDB and Runtime only.
Source§

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

Source§

type Return = RequestDatabaseNamesReturn

Source§

impl Command for DispatchDragEventCommand

Available on crate feature Input only.
Source§

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

Source§

type Return = DispatchDragEventReturn

Source§

impl Command for DispatchKeyEventCommand

Available on crate feature Input only.
Source§

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

Source§

type Return = DispatchKeyEventReturn

Source§

impl Command for DispatchMouseEventCommand

Available on crate feature Input only.
Source§

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

Source§

type Return = DispatchMouseEventReturn

Source§

impl Command for DispatchTouchEventCommand

Available on crate feature Input only.
Source§

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

Source§

type Return = DispatchTouchEventReturn

Source§

impl Command for EmulateTouchFromMouseEventCommand

Available on crate feature Input only.
Source§

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

Source§

type Return = EmulateTouchFromMouseEventReturn

Source§

impl Command for InsertTextCommand

Available on crate feature Input only.
Source§

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

Source§

type Return = InsertTextReturn

Source§

impl Command for SetIgnoreInputEventsCommand

Available on crate feature Input only.
Source§

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

Source§

type Return = SetIgnoreInputEventsReturn

Source§

impl Command for SetInterceptDragsCommand

Available on crate feature Input only.
Source§

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

Source§

type Return = SetInterceptDragsReturn

Source§

impl Command for SynthesizePinchGestureCommand

Available on crate feature Input only.
Source§

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

Source§

type Return = SynthesizePinchGestureReturn

Source§

impl Command for SynthesizeScrollGestureCommand

Available on crate feature Input only.
Source§

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

Source§

type Return = SynthesizeScrollGestureReturn

Source§

impl Command for SynthesizeTapGestureCommand

Available on crate feature Input only.
Source§

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

Source§

type Return = SynthesizeTapGestureReturn

Source§

impl Command for chrome_remote_interface_model::inspector::DisableCommand

Available on crate features experimental and Inspector only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::inspector::EnableCommand

Available on crate features experimental and Inspector only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for chrome_remote_interface_model::io::CloseCommand

Available on crate feature IO only.
Source§

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

Source§

type Return = CloseReturn

Source§

impl Command for ReadCommand

Available on crate feature IO only.
Source§

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

Source§

type Return = ReadReturn

Source§

impl Command for ResolveBlobCommand

Available on crate feature IO only.
Source§

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

Source§

type Return = ResolveBlobReturn

Source§

impl Command for CompositingReasonsCommand

Available on crate features experimental and LayerTree and DOM only.
Source§

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

Source§

type Return = CompositingReasonsReturn

Source§

impl Command for chrome_remote_interface_model::layer_tree::DisableCommand

Available on crate features experimental and LayerTree and DOM only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::layer_tree::EnableCommand

Available on crate features experimental and LayerTree and DOM only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for LoadSnapshotCommand

Available on crate features experimental and LayerTree and DOM only.
Source§

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

Source§

type Return = LoadSnapshotReturn

Source§

impl Command for MakeSnapshotCommand

Available on crate features experimental and LayerTree and DOM only.
Source§

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

Source§

type Return = MakeSnapshotReturn

Source§

impl Command for ProfileSnapshotCommand

Available on crate features experimental and LayerTree and DOM only.
Source§

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

Source§

type Return = ProfileSnapshotReturn

Source§

impl Command for ReleaseSnapshotCommand

Available on crate features experimental and LayerTree and DOM only.
Source§

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

Source§

type Return = ReleaseSnapshotReturn

Source§

impl Command for ReplaySnapshotCommand

Available on crate features experimental and LayerTree and DOM only.
Source§

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

Source§

type Return = ReplaySnapshotReturn

Source§

impl Command for SnapshotCommandLogCommand

Available on crate features experimental and LayerTree and DOM only.
Source§

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

Source§

type Return = SnapshotCommandLogReturn

Source§

impl Command for chrome_remote_interface_model::log::ClearCommand

Available on crate features Log and Runtime and Network only.
Source§

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

Source§

type Return = ClearReturn

Source§

impl Command for chrome_remote_interface_model::log::DisableCommand

Available on crate features Log and Runtime and Network only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::log::EnableCommand

Available on crate features Log and Runtime and Network only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for StartViolationsReportCommand

Available on crate features Log and Runtime and Network only.
Source§

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

Source§

type Return = StartViolationsReportReturn

Source§

impl Command for StopViolationsReportCommand

Available on crate features Log and Runtime and Network only.
Source§

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

Source§

type Return = StopViolationsReportReturn

Source§

impl Command for chrome_remote_interface_model::media::DisableCommand

Available on crate features experimental and Media only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::media::EnableCommand

Available on crate features experimental and Media only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for ForciblyPurgeJavaScriptMemoryCommand

Available on crate features experimental and Memory only.
Source§

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

Source§

type Return = ForciblyPurgeJavaScriptMemoryReturn

Source§

impl Command for GetAllTimeSamplingProfileCommand

Available on crate features experimental and Memory only.
Source§

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

Source§

type Return = GetAllTimeSamplingProfileReturn

Source§

impl Command for GetBrowserSamplingProfileCommand

Available on crate features experimental and Memory only.
Source§

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

Source§

type Return = GetBrowserSamplingProfileReturn

Source§

impl Command for GetDomCountersCommand

Available on crate features experimental and Memory only.
Source§

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

Source§

type Return = GetDomCountersReturn

Source§

impl Command for chrome_remote_interface_model::memory::GetSamplingProfileCommand

Available on crate features experimental and Memory only.
Source§

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

Source§

type Return = GetSamplingProfileReturn

Source§

impl Command for PrepareForLeakDetectionCommand

Available on crate features experimental and Memory only.
Source§

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

Source§

type Return = PrepareForLeakDetectionReturn

Source§

impl Command for SetPressureNotificationsSuppressedCommand

Available on crate features experimental and Memory only.
Source§

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

Source§

type Return = SetPressureNotificationsSuppressedReturn

Source§

impl Command for SimulatePressureNotificationCommand

Available on crate features experimental and Memory only.
Source§

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

Source§

type Return = SimulatePressureNotificationReturn

Source§

impl Command for chrome_remote_interface_model::memory::StartSamplingCommand

Available on crate features experimental and Memory only.
Source§

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

Source§

type Return = StartSamplingReturn

Source§

impl Command for chrome_remote_interface_model::memory::StopSamplingCommand

Available on crate features experimental and Memory only.
Source§

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

Source§

type Return = StopSamplingReturn

Source§

impl Command for CanClearBrowserCacheCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = CanClearBrowserCacheReturn

Source§

impl Command for CanClearBrowserCookiesCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = CanClearBrowserCookiesReturn

Source§

impl Command for CanEmulateNetworkConditionsCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = CanEmulateNetworkConditionsReturn

Source§

impl Command for ClearAcceptedEncodingsOverrideCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = ClearAcceptedEncodingsOverrideReturn

Source§

impl Command for ClearBrowserCacheCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = ClearBrowserCacheReturn

Source§

impl Command for ClearBrowserCookiesCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = ClearBrowserCookiesReturn

Source§

impl Command for ContinueInterceptedRequestCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = ContinueInterceptedRequestReturn

Source§

impl Command for DeleteCookiesCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = DeleteCookiesReturn

Source§

impl Command for chrome_remote_interface_model::network::DisableCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for EmulateNetworkConditionsCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = EmulateNetworkConditionsReturn

Source§

impl Command for chrome_remote_interface_model::network::EnableCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for GetAllCookiesCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = GetAllCookiesReturn

Source§

impl Command for GetCertificateCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = GetCertificateReturn

Source§

impl Command for chrome_remote_interface_model::network::GetCookiesCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = GetCookiesReturn

Source§

impl Command for GetRequestPostDataCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = GetRequestPostDataReturn

Source§

impl Command for chrome_remote_interface_model::network::GetResponseBodyCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = GetResponseBodyReturn

Source§

impl Command for GetResponseBodyForInterceptionCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = GetResponseBodyForInterceptionReturn

Source§

impl Command for GetSecurityIsolationStatusCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = GetSecurityIsolationStatusReturn

Source§

impl Command for LoadNetworkResourceCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = LoadNetworkResourceReturn

Source§

impl Command for ReplayXhrCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = ReplayXhrReturn

Source§

impl Command for SearchInResponseBodyCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = SearchInResponseBodyReturn

Source§

impl Command for SetAcceptedEncodingsCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = SetAcceptedEncodingsReturn

Source§

impl Command for SetAttachDebugStackCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = SetAttachDebugStackReturn

Source§

impl Command for SetBlockedUrLsCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = SetBlockedUrLsReturn

Source§

impl Command for SetBypassServiceWorkerCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = SetBypassServiceWorkerReturn

Source§

impl Command for SetCacheDisabledCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = SetCacheDisabledReturn

Source§

impl Command for SetCookieCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = SetCookieReturn

Source§

impl Command for chrome_remote_interface_model::network::SetCookiesCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = SetCookiesReturn

Source§

impl Command for SetDataSizeLimitsForTestCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = SetDataSizeLimitsForTestReturn

Source§

impl Command for SetExtraHttpHeadersCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = SetExtraHttpHeadersReturn

Source§

impl Command for SetRequestInterceptionCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = SetRequestInterceptionReturn

Source§

impl Command for chrome_remote_interface_model::network::SetUserAgentOverrideCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = SetUserAgentOverrideReturn

Source§

impl Command for TakeResponseBodyForInterceptionAsStreamCommand

Available on crate features Network and Debugger and Runtime and Security only.
Source§

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

Source§

type Return = TakeResponseBodyForInterceptionAsStreamReturn

Source§

impl Command for chrome_remote_interface_model::overlay::DisableCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::overlay::EnableCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for GetGridHighlightObjectsForTestCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = GetGridHighlightObjectsForTestReturn

Source§

impl Command for GetHighlightObjectForTestCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = GetHighlightObjectForTestReturn

Source§

impl Command for GetSourceOrderHighlightObjectForTestCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = GetSourceOrderHighlightObjectForTestReturn

Source§

impl Command for chrome_remote_interface_model::overlay::HideHighlightCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = HideHighlightReturn

Source§

impl Command for HighlightFrameCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = HighlightFrameReturn

Source§

impl Command for chrome_remote_interface_model::overlay::HighlightNodeCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = HighlightNodeReturn

Source§

impl Command for HighlightQuadCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = HighlightQuadReturn

Source§

impl Command for chrome_remote_interface_model::overlay::HighlightRectCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = HighlightRectReturn

Source§

impl Command for HighlightSourceOrderCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = HighlightSourceOrderReturn

Source§

impl Command for SetInspectModeCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetInspectModeReturn

Source§

impl Command for SetPausedInDebuggerMessageCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetPausedInDebuggerMessageReturn

Source§

impl Command for SetShowAdHighlightsCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetShowAdHighlightsReturn

Source§

impl Command for SetShowDebugBordersCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetShowDebugBordersReturn

Source§

impl Command for SetShowFlexOverlaysCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetShowFlexOverlaysReturn

Source§

impl Command for SetShowFpsCounterCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetShowFpsCounterReturn

Source§

impl Command for SetShowGridOverlaysCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetShowGridOverlaysReturn

Source§

impl Command for SetShowHingeCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetShowHingeReturn

Source§

impl Command for SetShowHitTestBordersCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetShowHitTestBordersReturn

Source§

impl Command for SetShowLayoutShiftRegionsCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetShowLayoutShiftRegionsReturn

Source§

impl Command for SetShowPaintRectsCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetShowPaintRectsReturn

Source§

impl Command for SetShowScrollBottleneckRectsCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetShowScrollBottleneckRectsReturn

Source§

impl Command for SetShowScrollSnapOverlaysCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetShowScrollSnapOverlaysReturn

Source§

impl Command for SetShowViewportSizeOnResizeCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetShowViewportSizeOnResizeReturn

Source§

impl Command for SetShowWebVitalsCommand

Available on crate features experimental and Overlay and DOM and Page and Runtime only.
Source§

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

Source§

type Return = SetShowWebVitalsReturn

Source§

impl Command for AddCompilationCacheCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = AddCompilationCacheReturn

Source§

impl Command for AddScriptToEvaluateOnLoadCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = AddScriptToEvaluateOnLoadReturn

Source§

impl Command for AddScriptToEvaluateOnNewDocumentCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = AddScriptToEvaluateOnNewDocumentReturn

Source§

impl Command for BringToFrontCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = BringToFrontReturn

Source§

impl Command for CaptureScreenshotCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = CaptureScreenshotReturn

Source§

impl Command for chrome_remote_interface_model::page::CaptureSnapshotCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = CaptureSnapshotReturn

Source§

impl Command for ClearCompilationCacheCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = ClearCompilationCacheReturn

Source§

impl Command for chrome_remote_interface_model::page::ClearDeviceMetricsOverrideCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = ClearDeviceMetricsOverrideReturn

Source§

impl Command for chrome_remote_interface_model::page::ClearDeviceOrientationOverrideCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = ClearDeviceOrientationOverrideReturn

Source§

impl Command for chrome_remote_interface_model::page::ClearGeolocationOverrideCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = ClearGeolocationOverrideReturn

Source§

impl Command for chrome_remote_interface_model::page::CloseCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = CloseReturn

Source§

impl Command for chrome_remote_interface_model::page::CrashCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = CrashReturn

Source§

impl Command for CreateIsolatedWorldCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = CreateIsolatedWorldReturn

Source§

impl Command for DeleteCookieCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = DeleteCookieReturn

Source§

impl Command for chrome_remote_interface_model::page::DisableCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::page::EnableCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for GenerateTestReportCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = GenerateTestReportReturn

Source§

impl Command for GetAppManifestCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = GetAppManifestReturn

Source§

impl Command for chrome_remote_interface_model::page::GetCookiesCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = GetCookiesReturn

Source§

impl Command for GetFrameTreeCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = GetFrameTreeReturn

Source§

impl Command for GetInstallabilityErrorsCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = GetInstallabilityErrorsReturn

Source§

impl Command for GetLayoutMetricsCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = GetLayoutMetricsReturn

Source§

impl Command for GetManifestIconsCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = GetManifestIconsReturn

Source§

impl Command for GetNavigationHistoryCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = GetNavigationHistoryReturn

Source§

impl Command for GetPermissionsPolicyStateCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = GetPermissionsPolicyStateReturn

Source§

impl Command for GetResourceContentCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = GetResourceContentReturn

Source§

impl Command for GetResourceTreeCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = GetResourceTreeReturn

Source§

impl Command for HandleJavaScriptDialogCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = HandleJavaScriptDialogReturn

Source§

impl Command for NavigateCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = NavigateReturn

Source§

impl Command for NavigateToHistoryEntryCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = NavigateToHistoryEntryReturn

Source§

impl Command for PrintToPdfCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = PrintToPdfReturn

Source§

impl Command for ProduceCompilationCacheCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = ProduceCompilationCacheReturn

Source§

impl Command for ReloadCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = ReloadReturn

Source§

impl Command for RemoveScriptToEvaluateOnLoadCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = RemoveScriptToEvaluateOnLoadReturn

Source§

impl Command for RemoveScriptToEvaluateOnNewDocumentCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = RemoveScriptToEvaluateOnNewDocumentReturn

Source§

impl Command for ResetNavigationHistoryCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = ResetNavigationHistoryReturn

Source§

impl Command for ScreencastFrameAckCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = ScreencastFrameAckReturn

Source§

impl Command for SearchInResourceCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = SearchInResourceReturn

Source§

impl Command for SetAdBlockingEnabledCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = SetAdBlockingEnabledReturn

Source§

impl Command for SetBypassCspCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = SetBypassCspReturn

Source§

impl Command for chrome_remote_interface_model::page::SetDeviceMetricsOverrideCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = SetDeviceMetricsOverrideReturn

Source§

impl Command for chrome_remote_interface_model::page::SetDeviceOrientationOverrideCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = SetDeviceOrientationOverrideReturn

Source§

impl Command for SetDocumentContentCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = SetDocumentContentReturn

Source§

impl Command for chrome_remote_interface_model::page::SetDownloadBehaviorCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = SetDownloadBehaviorReturn

Source§

impl Command for SetFontFamiliesCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = SetFontFamiliesReturn

Source§

impl Command for SetFontSizesCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = SetFontSizesReturn

Source§

impl Command for chrome_remote_interface_model::page::SetGeolocationOverrideCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = SetGeolocationOverrideReturn

Source§

impl Command for SetInterceptFileChooserDialogCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = SetInterceptFileChooserDialogReturn

Source§

impl Command for SetLifecycleEventsEnabledCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = SetLifecycleEventsEnabledReturn

Source§

impl Command for SetProduceCompilationCacheCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = SetProduceCompilationCacheReturn

Source§

impl Command for chrome_remote_interface_model::page::SetTouchEmulationEnabledCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = SetTouchEmulationEnabledReturn

Source§

impl Command for SetWebLifecycleStateCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = SetWebLifecycleStateReturn

Source§

impl Command for StartScreencastCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = StartScreencastReturn

Source§

impl Command for StopLoadingCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = StopLoadingReturn

Source§

impl Command for StopScreencastCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = StopScreencastReturn

Source§

impl Command for WaitForDebuggerCommand

Available on crate features Page and Debugger and DOM and IO and Network and Runtime only.
Source§

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

Source§

type Return = WaitForDebuggerReturn

Source§

impl Command for chrome_remote_interface_model::performance::DisableCommand

Available on crate feature Performance only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::performance::EnableCommand

Available on crate feature Performance only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for GetMetricsCommand

Available on crate feature Performance only.
Source§

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

Source§

type Return = GetMetricsReturn

Source§

impl Command for SetTimeDomainCommand

Available on crate feature Performance only.
Source§

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

Source§

type Return = SetTimeDomainReturn

Source§

impl Command for chrome_remote_interface_model::performance_timeline::EnableCommand

Available on crate features experimental and PerformanceTimeline and DOM and Network only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for chrome_remote_interface_model::profiler::DisableCommand

Available on crate features Profiler and Runtime and Debugger only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for DisableCountersCommand

Available on crate features Profiler and Runtime and Debugger only.
Source§

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

Source§

type Return = DisableCountersReturn

Source§

impl Command for DisableRuntimeCallStatsCommand

Available on crate features Profiler and Runtime and Debugger only.
Source§

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

Source§

type Return = DisableRuntimeCallStatsReturn

Source§

impl Command for chrome_remote_interface_model::profiler::EnableCommand

Available on crate features Profiler and Runtime and Debugger only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for EnableCountersCommand

Available on crate features Profiler and Runtime and Debugger only.
Source§

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

Source§

type Return = EnableCountersReturn

Source§

impl Command for EnableRuntimeCallStatsCommand

Available on crate features Profiler and Runtime and Debugger only.
Source§

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

Source§

type Return = EnableRuntimeCallStatsReturn

Source§

impl Command for GetBestEffortCoverageCommand

Available on crate features Profiler and Runtime and Debugger only.
Source§

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

Source§

type Return = GetBestEffortCoverageReturn

Source§

impl Command for GetCountersCommand

Available on crate features Profiler and Runtime and Debugger only.
Source§

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

Source§

type Return = GetCountersReturn

Source§

impl Command for GetRuntimeCallStatsCommand

Available on crate features Profiler and Runtime and Debugger only.
Source§

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

Source§

type Return = GetRuntimeCallStatsReturn

Source§

impl Command for SetSamplingIntervalCommand

Available on crate features Profiler and Runtime and Debugger only.
Source§

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

Source§

type Return = SetSamplingIntervalReturn

Source§

impl Command for chrome_remote_interface_model::profiler::StartCommand

Available on crate features Profiler and Runtime and Debugger only.
Source§

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

Source§

type Return = StartReturn

Source§

impl Command for StartPreciseCoverageCommand

Available on crate features Profiler and Runtime and Debugger only.
Source§

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

Source§

type Return = StartPreciseCoverageReturn

Source§

impl Command for StartTypeProfileCommand

Available on crate features Profiler and Runtime and Debugger only.
Source§

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

Source§

type Return = StartTypeProfileReturn

Source§

impl Command for StopCommand

Available on crate features Profiler and Runtime and Debugger only.
Source§

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

Source§

type Return = StopReturn

Source§

impl Command for StopPreciseCoverageCommand

Available on crate features Profiler and Runtime and Debugger only.
Source§

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

Source§

type Return = StopPreciseCoverageReturn

Source§

impl Command for StopTypeProfileCommand

Available on crate features Profiler and Runtime and Debugger only.
Source§

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

Source§

type Return = StopTypeProfileReturn

Source§

impl Command for TakePreciseCoverageCommand

Available on crate features Profiler and Runtime and Debugger only.
Source§

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

Source§

type Return = TakePreciseCoverageReturn

Source§

impl Command for TakeTypeProfileCommand

Available on crate features Profiler and Runtime and Debugger only.
Source§

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

Source§

type Return = TakeTypeProfileReturn

Source§

impl Command for AddBindingCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = AddBindingReturn

Source§

impl Command for AwaitPromiseCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = AwaitPromiseReturn

Source§

impl Command for CallFunctionOnCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = CallFunctionOnReturn

Source§

impl Command for CompileScriptCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = CompileScriptReturn

Source§

impl Command for chrome_remote_interface_model::runtime::DisableCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for DiscardConsoleEntriesCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = DiscardConsoleEntriesReturn

Source§

impl Command for chrome_remote_interface_model::runtime::EnableCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for EvaluateCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = EvaluateReturn

Source§

impl Command for GetHeapUsageCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = GetHeapUsageReturn

Source§

impl Command for GetIsolateIdCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = GetIsolateIdReturn

Source§

impl Command for GetPropertiesCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = GetPropertiesReturn

Source§

impl Command for GlobalLexicalScopeNamesCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = GlobalLexicalScopeNamesReturn

Source§

impl Command for QueryObjectsCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = QueryObjectsReturn

Source§

impl Command for ReleaseObjectCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = ReleaseObjectReturn

Source§

impl Command for ReleaseObjectGroupCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = ReleaseObjectGroupReturn

Source§

impl Command for RemoveBindingCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = RemoveBindingReturn

Source§

impl Command for RunIfWaitingForDebuggerCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = RunIfWaitingForDebuggerReturn

Source§

impl Command for RunScriptCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = RunScriptReturn

Source§

impl Command for chrome_remote_interface_model::runtime::SetAsyncCallStackDepthCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = SetAsyncCallStackDepthReturn

Source§

impl Command for SetCustomObjectFormatterEnabledCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = SetCustomObjectFormatterEnabledReturn

Source§

impl Command for SetMaxCallStackSizeToCaptureCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = SetMaxCallStackSizeToCaptureReturn

Source§

impl Command for TerminateExecutionCommand

Available on crate feature Runtime only.
Source§

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

Source§

type Return = TerminateExecutionReturn

Source§

impl Command for GetDomainsCommand

Available on crate feature Schema only.
Source§

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

Source§

type Return = GetDomainsReturn

Source§

impl Command for chrome_remote_interface_model::security::DisableCommand

Available on crate feature Security only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::security::EnableCommand

Available on crate feature Security only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for HandleCertificateErrorCommand

Available on crate feature Security only.
Source§

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

Source§

type Return = HandleCertificateErrorReturn

Source§

impl Command for SetIgnoreCertificateErrorsCommand

Available on crate feature Security only.
Source§

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

Source§

type Return = SetIgnoreCertificateErrorsReturn

Source§

impl Command for SetOverrideCertificateErrorsCommand

Available on crate feature Security only.
Source§

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

Source§

type Return = SetOverrideCertificateErrorsReturn

Source§

impl Command for DeliverPushMessageCommand

Available on crate features experimental and ServiceWorker and Target only.
Source§

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

Source§

type Return = DeliverPushMessageReturn

Source§

impl Command for chrome_remote_interface_model::service_worker::DisableCommand

Available on crate features experimental and ServiceWorker and Target only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for DispatchPeriodicSyncEventCommand

Available on crate features experimental and ServiceWorker and Target only.
Source§

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

Source§

type Return = DispatchPeriodicSyncEventReturn

Source§

impl Command for DispatchSyncEventCommand

Available on crate features experimental and ServiceWorker and Target only.
Source§

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

Source§

type Return = DispatchSyncEventReturn

Source§

impl Command for chrome_remote_interface_model::service_worker::EnableCommand

Available on crate features experimental and ServiceWorker and Target only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for InspectWorkerCommand

Available on crate features experimental and ServiceWorker and Target only.
Source§

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

Source§

type Return = InspectWorkerReturn

Source§

impl Command for SetForceUpdateOnPageLoadCommand

Available on crate features experimental and ServiceWorker and Target only.
Source§

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

Source§

type Return = SetForceUpdateOnPageLoadReturn

Source§

impl Command for SkipWaitingCommand

Available on crate features experimental and ServiceWorker and Target only.
Source§

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

Source§

type Return = SkipWaitingReturn

Source§

impl Command for StartWorkerCommand

Available on crate features experimental and ServiceWorker and Target only.
Source§

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

Source§

type Return = StartWorkerReturn

Source§

impl Command for StopAllWorkersCommand

Available on crate features experimental and ServiceWorker and Target only.
Source§

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

Source§

type Return = StopAllWorkersReturn

Source§

impl Command for StopWorkerCommand

Available on crate features experimental and ServiceWorker and Target only.
Source§

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

Source§

type Return = StopWorkerReturn

Source§

impl Command for UnregisterCommand

Available on crate features experimental and ServiceWorker and Target only.
Source§

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

Source§

type Return = UnregisterReturn

Source§

impl Command for UpdateRegistrationCommand

Available on crate features experimental and ServiceWorker and Target only.
Source§

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

Source§

type Return = UpdateRegistrationReturn

Source§

impl Command for ClearCookiesCommand

Available on crate features experimental and Storage and Browser and Network only.
Source§

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

Source§

type Return = ClearCookiesReturn

Source§

impl Command for ClearDataForOriginCommand

Available on crate features experimental and Storage and Browser and Network only.
Source§

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

Source§

type Return = ClearDataForOriginReturn

Source§

impl Command for ClearTrustTokensCommand

Available on crate features experimental and Storage and Browser and Network only.
Source§

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

Source§

type Return = ClearTrustTokensReturn

Source§

impl Command for chrome_remote_interface_model::storage::GetCookiesCommand

Available on crate features experimental and Storage and Browser and Network only.
Source§

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

Source§

type Return = GetCookiesReturn

Source§

impl Command for GetTrustTokensCommand

Available on crate features experimental and Storage and Browser and Network only.
Source§

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

Source§

type Return = GetTrustTokensReturn

Source§

impl Command for GetUsageAndQuotaCommand

Available on crate features experimental and Storage and Browser and Network only.
Source§

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

Source§

type Return = GetUsageAndQuotaReturn

Source§

impl Command for OverrideQuotaForOriginCommand

Available on crate features experimental and Storage and Browser and Network only.
Source§

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

Source§

type Return = OverrideQuotaForOriginReturn

Source§

impl Command for chrome_remote_interface_model::storage::SetCookiesCommand

Available on crate features experimental and Storage and Browser and Network only.
Source§

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

Source§

type Return = SetCookiesReturn

Source§

impl Command for TrackCacheStorageForOriginCommand

Available on crate features experimental and Storage and Browser and Network only.
Source§

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

Source§

type Return = TrackCacheStorageForOriginReturn

Source§

impl Command for TrackIndexedDbForOriginCommand

Available on crate features experimental and Storage and Browser and Network only.
Source§

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

Source§

type Return = TrackIndexedDbForOriginReturn

Source§

impl Command for UntrackCacheStorageForOriginCommand

Available on crate features experimental and Storage and Browser and Network only.
Source§

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

Source§

type Return = UntrackCacheStorageForOriginReturn

Source§

impl Command for UntrackIndexedDbForOriginCommand

Available on crate features experimental and Storage and Browser and Network only.
Source§

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

Source§

type Return = UntrackIndexedDbForOriginReturn

Source§

impl Command for GetInfoCommand

Available on crate features experimental and SystemInfo only.
Source§

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

Source§

type Return = GetInfoReturn

Source§

impl Command for GetProcessInfoCommand

Available on crate features experimental and SystemInfo only.
Source§

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

Source§

type Return = GetProcessInfoReturn

Source§

impl Command for ActivateTargetCommand

Available on crate feature Target only.
Source§

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

Source§

type Return = ActivateTargetReturn

Source§

impl Command for AttachToBrowserTargetCommand

Available on crate feature Target only.
Source§

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

Source§

type Return = AttachToBrowserTargetReturn

Source§

impl Command for AttachToTargetCommand

Available on crate feature Target only.
Source§

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

Source§

type Return = AttachToTargetReturn

Source§

impl Command for CloseTargetCommand

Available on crate feature Target only.
Source§

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

Source§

type Return = CloseTargetReturn

Source§

impl Command for CreateBrowserContextCommand

Available on crate feature Target only.
Source§

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

Source§

type Return = CreateBrowserContextReturn

Source§

impl Command for CreateTargetCommand

Available on crate feature Target only.
Source§

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

Source§

type Return = CreateTargetReturn

Source§

impl Command for DetachFromTargetCommand

Available on crate feature Target only.
Source§

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

Source§

type Return = DetachFromTargetReturn

Source§

impl Command for DisposeBrowserContextCommand

Available on crate feature Target only.
Source§

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

Source§

type Return = DisposeBrowserContextReturn

Source§

impl Command for ExposeDevToolsProtocolCommand

Available on crate feature Target only.
Source§

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

Source§

type Return = ExposeDevToolsProtocolReturn

Source§

impl Command for GetBrowserContextsCommand

Available on crate feature Target only.
Source§

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

Source§

type Return = GetBrowserContextsReturn

Source§

impl Command for GetTargetInfoCommand

Available on crate feature Target only.
Source§

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

Source§

type Return = GetTargetInfoReturn

Source§

impl Command for GetTargetsCommand

Available on crate feature Target only.
Source§

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

Source§

type Return = GetTargetsReturn

Source§

impl Command for SendMessageToTargetCommand

Available on crate feature Target only.
Source§

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

Source§

type Return = SendMessageToTargetReturn

Source§

impl Command for SetAutoAttachCommand

Available on crate feature Target only.
Source§

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

Source§

type Return = SetAutoAttachReturn

Source§

impl Command for SetDiscoverTargetsCommand

Available on crate feature Target only.
Source§

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

Source§

type Return = SetDiscoverTargetsReturn

Source§

impl Command for SetRemoteLocationsCommand

Available on crate feature Target only.
Source§

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

Source§

type Return = SetRemoteLocationsReturn

Source§

impl Command for BindCommand

Available on crate features experimental and Tethering only.
Source§

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

Source§

type Return = BindReturn

Source§

impl Command for UnbindCommand

Available on crate features experimental and Tethering only.
Source§

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

Source§

type Return = UnbindReturn

Source§

impl Command for EndCommand

Available on crate features experimental and Tracing and IO only.
Source§

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

Source§

type Return = EndReturn

Source§

impl Command for GetCategoriesCommand

Available on crate features experimental and Tracing and IO only.
Source§

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

Source§

type Return = GetCategoriesReturn

Source§

impl Command for RecordClockSyncMarkerCommand

Available on crate features experimental and Tracing and IO only.
Source§

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

Source§

type Return = RecordClockSyncMarkerReturn

Source§

impl Command for RequestMemoryDumpCommand

Available on crate features experimental and Tracing and IO only.
Source§

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

Source§

type Return = RequestMemoryDumpReturn

Source§

impl Command for chrome_remote_interface_model::tracing::StartCommand

Available on crate features experimental and Tracing and IO only.
Source§

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

Source§

type Return = StartReturn

Source§

impl Command for chrome_remote_interface_model::web_audio::DisableCommand

Available on crate features experimental and WebAudio only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::web_audio::EnableCommand

Available on crate features experimental and WebAudio only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for GetRealtimeDataCommand

Available on crate features experimental and WebAudio only.
Source§

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

Source§

type Return = GetRealtimeDataReturn

Source§

impl Command for AddCredentialCommand

Available on crate features experimental and WebAuthn only.
Source§

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

Source§

type Return = AddCredentialReturn

Source§

impl Command for AddVirtualAuthenticatorCommand

Available on crate features experimental and WebAuthn only.
Source§

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

Source§

type Return = AddVirtualAuthenticatorReturn

Source§

impl Command for ClearCredentialsCommand

Available on crate features experimental and WebAuthn only.
Source§

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

Source§

type Return = ClearCredentialsReturn

Source§

impl Command for chrome_remote_interface_model::web_authn::DisableCommand

Available on crate features experimental and WebAuthn only.
Source§

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

Source§

type Return = DisableReturn

Source§

impl Command for chrome_remote_interface_model::web_authn::EnableCommand

Available on crate features experimental and WebAuthn only.
Source§

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

Source§

type Return = EnableReturn

Source§

impl Command for GetCredentialCommand

Available on crate features experimental and WebAuthn only.
Source§

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

Source§

type Return = GetCredentialReturn

Source§

impl Command for GetCredentialsCommand

Available on crate features experimental and WebAuthn only.
Source§

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

Source§

type Return = GetCredentialsReturn

Source§

impl Command for RemoveCredentialCommand

Available on crate features experimental and WebAuthn only.
Source§

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

Source§

type Return = RemoveCredentialReturn

Source§

impl Command for RemoveVirtualAuthenticatorCommand

Available on crate features experimental and WebAuthn only.
Source§

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

Source§

type Return = RemoveVirtualAuthenticatorReturn

Source§

impl Command for SetAutomaticPresenceSimulationCommand

Available on crate features experimental and WebAuthn only.
Source§

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

Source§

type Return = SetAutomaticPresenceSimulationReturn

Source§

impl Command for SetUserVerifiedCommand

Available on crate features experimental and WebAuthn only.
Source§

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

Source§

type Return = SetUserVerifiedReturn