pub struct SetAsyncCallStackDepth {
pub method: SetAsyncCallStackDepthMethod,
pub params: SetAsyncCallStackDepthParams,
}Expand description
Enables or disables async call stacks tracking. setAsyncCallStackDepth
Fields§
§method: SetAsyncCallStackDepthMethod§params: SetAsyncCallStackDepthParamsImplementations§
Source§impl SetAsyncCallStackDepth
impl SetAsyncCallStackDepth
pub fn builder() -> SetAsyncCallStackDepthBuilder
Source§impl SetAsyncCallStackDepth
impl SetAsyncCallStackDepth
pub const IDENTIFIER: &'static str = "Runtime.setAsyncCallStackDepth"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetAsyncCallStackDepth
impl Clone for SetAsyncCallStackDepth
Source§fn clone(&self) -> SetAsyncCallStackDepth
fn clone(&self) -> SetAsyncCallStackDepth
Returns a duplicate 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 CommandResult for SetAsyncCallStackDepth
impl CommandResult for SetAsyncCallStackDepth
type Result = SetAsyncCallStackDepthResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetAsyncCallStackDepth
impl Debug for SetAsyncCallStackDepth
Source§impl<'de> Deserialize<'de> for SetAsyncCallStackDepth
impl<'de> Deserialize<'de> for SetAsyncCallStackDepth
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<SetAsyncCallStackDepth> for Command
impl From<SetAsyncCallStackDepth> for Command
Source§fn from(v: SetAsyncCallStackDepth) -> Self
fn from(v: SetAsyncCallStackDepth) -> Self
Converts to this type from the input type.
Source§impl From<SetAsyncCallStackDepth> for JsProtocolCommands
impl From<SetAsyncCallStackDepth> for JsProtocolCommands
Source§fn from(v: SetAsyncCallStackDepth) -> Self
fn from(v: SetAsyncCallStackDepth) -> Self
Converts to this type from the input type.
Source§impl From<SetAsyncCallStackDepth> for RuntimeCommands
impl From<SetAsyncCallStackDepth> for RuntimeCommands
Source§fn from(v: SetAsyncCallStackDepth) -> Self
fn from(v: SetAsyncCallStackDepth) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetAsyncCallStackDepth
impl PartialEq for SetAsyncCallStackDepth
Source§impl Serialize for SetAsyncCallStackDepth
impl Serialize for SetAsyncCallStackDepth
Source§impl TryFrom<Command> for SetAsyncCallStackDepth
impl TryFrom<Command> for SetAsyncCallStackDepth
Source§impl TryFrom<JsProtocolCommands> for SetAsyncCallStackDepth
impl TryFrom<JsProtocolCommands> for SetAsyncCallStackDepth
Source§type Error = JsProtocolCommands
type Error = JsProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: JsProtocolCommands,
) -> Result<Self, <SetAsyncCallStackDepth as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <SetAsyncCallStackDepth as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<RuntimeCommands> for SetAsyncCallStackDepth
impl TryFrom<RuntimeCommands> for SetAsyncCallStackDepth
Source§type Error = RuntimeCommands
type Error = RuntimeCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: RuntimeCommands,
) -> Result<Self, <SetAsyncCallStackDepth as TryFrom<RuntimeCommands>>::Error>
fn try_from( e: RuntimeCommands, ) -> Result<Self, <SetAsyncCallStackDepth as TryFrom<RuntimeCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetAsyncCallStackDepth
Auto Trait Implementations§
impl Freeze for SetAsyncCallStackDepth
impl RefUnwindSafe for SetAsyncCallStackDepth
impl Send for SetAsyncCallStackDepth
impl Sync for SetAsyncCallStackDepth
impl Unpin for SetAsyncCallStackDepth
impl UnsafeUnpin for SetAsyncCallStackDepth
impl UnwindSafe for SetAsyncCallStackDepth
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more