pub struct SetPausedInDebuggerMessageParams {
pub message: Option<String>,
}Fields§
§message: Option<String>The message to display, also triggers resume and step over controls.
Implementations§
source§impl SetPausedInDebuggerMessageParams
impl SetPausedInDebuggerMessageParams
pub fn builder() -> SetPausedInDebuggerMessageParamsBuilder
source§impl SetPausedInDebuggerMessageParams
impl SetPausedInDebuggerMessageParams
pub const IDENTIFIER: &'static str = "Overlay.setPausedInDebuggerMessage"
Trait Implementations§
source§impl Clone for SetPausedInDebuggerMessageParams
impl Clone for SetPausedInDebuggerMessageParams
source§fn clone(&self) -> SetPausedInDebuggerMessageParams
fn clone(&self) -> SetPausedInDebuggerMessageParams
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Command for SetPausedInDebuggerMessageParams
impl Command for SetPausedInDebuggerMessageParams
§type Response = SetPausedInDebuggerMessageReturns
type Response = SetPausedInDebuggerMessageReturns
The type of the response this request triggers on the chromium server
source§impl Default for SetPausedInDebuggerMessageParams
impl Default for SetPausedInDebuggerMessageParams
source§fn default() -> SetPausedInDebuggerMessageParams
fn default() -> SetPausedInDebuggerMessageParams
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SetPausedInDebuggerMessageParams
impl<'de> Deserialize<'de> for SetPausedInDebuggerMessageParams
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<SetPausedInDebuggerMessageParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<SetPausedInDebuggerMessageParams, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Method for SetPausedInDebuggerMessageParams
impl Method for SetPausedInDebuggerMessageParams
source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNodesource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMsource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodesource§impl PartialEq<SetPausedInDebuggerMessageParams> for SetPausedInDebuggerMessageParams
impl PartialEq<SetPausedInDebuggerMessageParams> for SetPausedInDebuggerMessageParams
source§fn eq(&self, other: &SetPausedInDebuggerMessageParams) -> bool
fn eq(&self, other: &SetPausedInDebuggerMessageParams) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for SetPausedInDebuggerMessageParams
impl Serialize for SetPausedInDebuggerMessageParams
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more