pub struct ContinueToLocation {
pub method: ContinueToLocationMethod,
pub params: ContinueToLocationParams,
}Expand description
Continues execution until specific location is reached. continueToLocation
Fields§
§method: ContinueToLocationMethod§params: ContinueToLocationParamsImplementations§
Source§impl ContinueToLocation
impl ContinueToLocation
pub fn builder() -> ContinueToLocationBuilder
Source§impl ContinueToLocation
impl ContinueToLocation
pub const IDENTIFIER: &'static str = "Debugger.continueToLocation"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ContinueToLocation
impl Clone for ContinueToLocation
Source§fn clone(&self) -> ContinueToLocation
fn clone(&self) -> ContinueToLocation
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 CommandResult for ContinueToLocation
impl CommandResult for ContinueToLocation
type Result = ContinueToLocationResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ContinueToLocation
impl Debug for ContinueToLocation
Source§impl<'de> Deserialize<'de> for ContinueToLocation
impl<'de> Deserialize<'de> for ContinueToLocation
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
Source§impl From<ContinueToLocation> for Command
impl From<ContinueToLocation> for Command
Source§fn from(v: ContinueToLocation) -> Self
fn from(v: ContinueToLocation) -> Self
Converts to this type from the input type.
Source§impl From<ContinueToLocation> for DebuggerCommands
impl From<ContinueToLocation> for DebuggerCommands
Source§fn from(v: ContinueToLocation) -> Self
fn from(v: ContinueToLocation) -> Self
Converts to this type from the input type.
Source§impl From<ContinueToLocation> for JsProtocolCommands
impl From<ContinueToLocation> for JsProtocolCommands
Source§fn from(v: ContinueToLocation) -> Self
fn from(v: ContinueToLocation) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ContinueToLocation
impl PartialEq for ContinueToLocation
Source§impl Serialize for ContinueToLocation
impl Serialize for ContinueToLocation
Source§impl TryFrom<Command> for ContinueToLocation
impl TryFrom<Command> for ContinueToLocation
Source§impl TryFrom<DebuggerCommands> for ContinueToLocation
impl TryFrom<DebuggerCommands> for ContinueToLocation
Source§type Error = DebuggerCommands
type Error = DebuggerCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: DebuggerCommands,
) -> Result<Self, <ContinueToLocation as TryFrom<DebuggerCommands>>::Error>
fn try_from( e: DebuggerCommands, ) -> Result<Self, <ContinueToLocation as TryFrom<DebuggerCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolCommands> for ContinueToLocation
impl TryFrom<JsProtocolCommands> for ContinueToLocation
Source§type Error = JsProtocolCommands
type Error = JsProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: JsProtocolCommands,
) -> Result<Self, <ContinueToLocation as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <ContinueToLocation as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for ContinueToLocation
Auto Trait Implementations§
impl Freeze for ContinueToLocation
impl RefUnwindSafe for ContinueToLocation
impl Send for ContinueToLocation
impl Sync for ContinueToLocation
impl Unpin for ContinueToLocation
impl UnsafeUnpin for ContinueToLocation
impl UnwindSafe for ContinueToLocation
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