pub struct TargetSetAutoAttachParams {
pub auto_attach: bool,
pub wait_for_debugger_on_start: bool,
pub flatten: bool,
}Expand description
Typed params for Target.setAutoAttach.
Fields§
§auto_attach: boolWhether targets should be auto-attached.
wait_for_debugger_on_start: boolWhether new targets should pause immediately after attachment.
flatten: boolWhether flattened session mode should be used.
Trait Implementations§
Source§impl Clone for TargetSetAutoAttachParams
impl Clone for TargetSetAutoAttachParams
Source§fn clone(&self) -> TargetSetAutoAttachParams
fn clone(&self) -> TargetSetAutoAttachParams
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 Command for TargetSetAutoAttachParams
impl Command for TargetSetAutoAttachParams
Source§impl Debug for TargetSetAutoAttachParams
impl Debug for TargetSetAutoAttachParams
Source§impl<'de> Deserialize<'de> for TargetSetAutoAttachParams
impl<'de> Deserialize<'de> for TargetSetAutoAttachParams
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
impl Eq for TargetSetAutoAttachParams
impl StructuralPartialEq for TargetSetAutoAttachParams
Auto Trait Implementations§
impl Freeze for TargetSetAutoAttachParams
impl RefUnwindSafe for TargetSetAutoAttachParams
impl Send for TargetSetAutoAttachParams
impl Sync for TargetSetAutoAttachParams
impl Unpin for TargetSetAutoAttachParams
impl UnsafeUnpin for TargetSetAutoAttachParams
impl UnwindSafe for TargetSetAutoAttachParams
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