pub struct ContinueToLocationParams {
pub location: Location,
pub targetCallFrames: Option<String>,
}Expand description
Continues execution until specific location is reached.
Fields§
§location: LocationLocation to continue to.
targetCallFrames: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for ContinueToLocationParams
impl Clone for ContinueToLocationParams
Source§fn clone(&self) -> ContinueToLocationParams
fn clone(&self) -> ContinueToLocationParams
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 ContinueToLocationParams
impl Debug for ContinueToLocationParams
Source§impl Default for ContinueToLocationParams
impl Default for ContinueToLocationParams
Source§fn default() -> ContinueToLocationParams
fn default() -> ContinueToLocationParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContinueToLocationParams
impl<'de> Deserialize<'de> for ContinueToLocationParams
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 ContinueToLocationParams
impl RefUnwindSafe for ContinueToLocationParams
impl Send for ContinueToLocationParams
impl Sync for ContinueToLocationParams
impl Unpin for ContinueToLocationParams
impl UnsafeUnpin for ContinueToLocationParams
impl UnwindSafe for ContinueToLocationParams
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