pub struct ScopesArguments {
pub frame_id: u64,
}
Expand description
Arguments for scopes
request.
Fields§
§frame_id: u64
Retrieve the scopes for the stack frame identified by frameId
. The frameId
must have been obtained in the current suspended state. See ‘Lifetime of Object References’ in the Overview section for details.
Trait Implementations§
Source§impl Clone for ScopesArguments
impl Clone for ScopesArguments
Source§fn clone(&self) -> ScopesArguments
fn clone(&self) -> ScopesArguments
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 Debug for ScopesArguments
impl Debug for ScopesArguments
Source§impl<'de> Deserialize<'de> for ScopesArguments
impl<'de> Deserialize<'de> for ScopesArguments
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 ScopesArguments
impl RefUnwindSafe for ScopesArguments
impl Send for ScopesArguments
impl Sync for ScopesArguments
impl Unpin for ScopesArguments
impl UnwindSafe for ScopesArguments
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