Struct decthings_api::rpc::debug::DebugSessionOptions
source · pub struct DebugSessionOptions {
pub terminate_after_inactive_seconds: Option<u32>,
pub remote_inspector: Option<bool>,
}
Fields§
§terminate_after_inactive_seconds: Option<u32>
Will automatically terminate the session if no method is called on the debug session for this amount of time. Default: 1800.
remote_inspector: Option<bool>
Whether to run the process in remote debugger mode, allowing you to place breakpoints and step through the code. Default: true.
Trait Implementations§
source§impl Clone for DebugSessionOptions
impl Clone for DebugSessionOptions
source§fn clone(&self) -> DebugSessionOptions
fn clone(&self) -> DebugSessionOptions
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 DebugSessionOptions
impl Debug for DebugSessionOptions
Auto Trait Implementations§
impl Freeze for DebugSessionOptions
impl RefUnwindSafe for DebugSessionOptions
impl Send for DebugSessionOptions
impl Sync for DebugSessionOptions
impl Unpin for DebugSessionOptions
impl UnwindSafe for DebugSessionOptions
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