pub struct StepInTargetsRequest {
pub arguments: StepInTargetsArguments,
pub command: String,
pub seq: i64,
pub type_: String,
}
Fields§
§arguments: StepInTargetsArguments
Object containing arguments for the command.
command: String
The command to execute.
seq: i64
Sequence number.
type_: String
Message type.
Trait Implementations§
Source§impl Clone for StepInTargetsRequest
impl Clone for StepInTargetsRequest
Source§fn clone(&self) -> StepInTargetsRequest
fn clone(&self) -> StepInTargetsRequest
Returns a copy 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 StepInTargetsRequest
impl Debug for StepInTargetsRequest
Source§impl<'de> Deserialize<'de> for StepInTargetsRequest
impl<'de> Deserialize<'de> for StepInTargetsRequest
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 PartialEq for StepInTargetsRequest
impl PartialEq for StepInTargetsRequest
Source§impl Serialize for StepInTargetsRequest
impl Serialize for StepInTargetsRequest
impl StructuralPartialEq for StepInTargetsRequest
Auto Trait Implementations§
impl Freeze for StepInTargetsRequest
impl RefUnwindSafe for StepInTargetsRequest
impl Send for StepInTargetsRequest
impl Sync for StepInTargetsRequest
impl Unpin for StepInTargetsRequest
impl UnwindSafe for StepInTargetsRequest
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