pub struct StepInRequestArguments {
pub thread_id: i32,
pub target_id: Option<i32>,
pub granularity: SteppingGranularity,
/* private fields */
}
Fields§
§thread_id: i32
Execute ‘stepIn’ for this thread.
target_id: Option<i32>
Optional id of the target to step into.
granularity: SteppingGranularity
Optional granularity to step. If no granularity is specified, a granularity of ‘statement’ is assumed.
Implementations§
Source§impl StepInRequestArguments
impl StepInRequestArguments
Sourcepub fn builder() -> StepInRequestArgumentsBuilder<((), (), ())>
pub fn builder() -> StepInRequestArgumentsBuilder<((), (), ())>
Create a builder for building StepInRequestArguments
.
On the builder, call .thread_id(...)
, .target_id(...)
(optional), .granularity(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of StepInRequestArguments
.
Trait Implementations§
Source§impl Clone for StepInRequestArguments
impl Clone for StepInRequestArguments
Source§fn clone(&self) -> StepInRequestArguments
fn clone(&self) -> StepInRequestArguments
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 StepInRequestArguments
impl Debug for StepInRequestArguments
Source§impl<'de> Deserialize<'de> for StepInRequestArguments
impl<'de> Deserialize<'de> for StepInRequestArguments
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<StepInRequestArguments> for ProtocolMessageContent
impl From<StepInRequestArguments> for ProtocolMessageContent
Source§fn from(args: StepInRequestArguments) -> Self
fn from(args: StepInRequestArguments) -> Self
Converts to this type from the input type.
Source§impl From<StepInRequestArguments> for Request
impl From<StepInRequestArguments> for Request
Source§fn from(args: StepInRequestArguments) -> Self
fn from(args: StepInRequestArguments) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StepInRequestArguments
impl PartialEq for StepInRequestArguments
Source§impl Serialize for StepInRequestArguments
impl Serialize for StepInRequestArguments
impl Eq for StepInRequestArguments
impl StructuralPartialEq for StepInRequestArguments
Auto Trait Implementations§
impl Freeze for StepInRequestArguments
impl RefUnwindSafe for StepInRequestArguments
impl Send for StepInRequestArguments
impl Sync for StepInRequestArguments
impl Unpin for StepInRequestArguments
impl UnwindSafe for StepInRequestArguments
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.