pub struct RestartFrameArguments {
pub frame_id: u64,
}
Expand description
Arguments for restartFrame
request.
Fields§
§frame_id: u64
Restart 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 RestartFrameArguments
impl Clone for RestartFrameArguments
Source§fn clone(&self) -> RestartFrameArguments
fn clone(&self) -> RestartFrameArguments
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 RestartFrameArguments
impl Debug for RestartFrameArguments
Source§impl<'de> Deserialize<'de> for RestartFrameArguments
impl<'de> Deserialize<'de> for RestartFrameArguments
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 RestartFrameArguments
impl RefUnwindSafe for RestartFrameArguments
impl Send for RestartFrameArguments
impl Sync for RestartFrameArguments
impl Unpin for RestartFrameArguments
impl UnwindSafe for RestartFrameArguments
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