pub struct SetAsyncCallStackDepthParams { /* private fields */ }Expand description
Enables or disables async call stacks tracking.
Implementations§
Source§impl SetAsyncCallStackDepthParams
impl SetAsyncCallStackDepthParams
Sourcepub fn builder(max_depth: i64) -> SetAsyncCallStackDepthParamsBuilder
pub fn builder(max_depth: i64) -> SetAsyncCallStackDepthParamsBuilder
Creates a builder for this type with the required parameters:
max_depth: Maximum depth of async call stacks. Setting to0will effectively disable collecting async call stacks (default).
Trait Implementations§
Source§impl<'a> CdpCommand<'a> for SetAsyncCallStackDepthParams
impl<'a> CdpCommand<'a> for SetAsyncCallStackDepthParams
Source§impl Clone for SetAsyncCallStackDepthParams
impl Clone for SetAsyncCallStackDepthParams
Source§fn clone(&self) -> SetAsyncCallStackDepthParams
fn clone(&self) -> SetAsyncCallStackDepthParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SetAsyncCallStackDepthParams
impl Debug for SetAsyncCallStackDepthParams
Source§impl Default for SetAsyncCallStackDepthParams
impl Default for SetAsyncCallStackDepthParams
Source§fn default() -> SetAsyncCallStackDepthParams
fn default() -> SetAsyncCallStackDepthParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetAsyncCallStackDepthParams
impl<'de> Deserialize<'de> for SetAsyncCallStackDepthParams
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
Auto Trait Implementations§
impl Freeze for SetAsyncCallStackDepthParams
impl RefUnwindSafe for SetAsyncCallStackDepthParams
impl Send for SetAsyncCallStackDepthParams
impl Sync for SetAsyncCallStackDepthParams
impl Unpin for SetAsyncCallStackDepthParams
impl UnsafeUnpin for SetAsyncCallStackDepthParams
impl UnwindSafe for SetAsyncCallStackDepthParams
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