pub struct EnableReturns<'a> { /* private fields */ }Expand description
Enables debugger for the given page. Clients should not assume that the debugging has been enabled until the result for this command is received.
Implementations§
Source§impl<'a> EnableReturns<'a>
impl<'a> EnableReturns<'a>
Sourcepub fn builder(debugger_id: UniqueDebuggerId<'a>) -> EnableReturnsBuilder<'a>
pub fn builder(debugger_id: UniqueDebuggerId<'a>) -> EnableReturnsBuilder<'a>
Creates a builder for this type with the required parameters:
debugger_id: Unique identifier of the debugger.
Sourcepub fn debugger_id(&self) -> &UniqueDebuggerId<'a>
pub fn debugger_id(&self) -> &UniqueDebuggerId<'a>
Unique identifier of the debugger.
Trait Implementations§
Source§impl<'a> Clone for EnableReturns<'a>
impl<'a> Clone for EnableReturns<'a>
Source§fn clone(&self) -> EnableReturns<'a>
fn clone(&self) -> EnableReturns<'a>
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<'a> Debug for EnableReturns<'a>
impl<'a> Debug for EnableReturns<'a>
Source§impl<'a> Default for EnableReturns<'a>
impl<'a> Default for EnableReturns<'a>
Source§fn default() -> EnableReturns<'a>
fn default() -> EnableReturns<'a>
Returns the “default value” for a type. Read more
Source§impl<'de, 'a> Deserialize<'de> for EnableReturns<'a>
impl<'de, 'a> Deserialize<'de> for EnableReturns<'a>
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<'a> Freeze for EnableReturns<'a>
impl<'a> RefUnwindSafe for EnableReturns<'a>
impl<'a> Send for EnableReturns<'a>
impl<'a> Sync for EnableReturns<'a>
impl<'a> Unpin for EnableReturns<'a>
impl<'a> UnsafeUnpin for EnableReturns<'a>
impl<'a> UnwindSafe for EnableReturns<'a>
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