Struct decthings_api::rpc::debug::LaunchDebugSessionParams
source · pub struct LaunchDebugSessionParams<'a> {
pub model_id: &'a str,
pub execution_location: ExecutionLocationProvider<'a>,
pub options: Option<DebugSessionOptions>,
pub subscribe_to_events: Option<bool>,
}
Fields§
§model_id: &'a str
The model’s id.
execution_location: ExecutionLocationProvider<'a>
Which launcher to use for running the session.
options: Option<DebugSessionOptions>
§subscribe_to_events: Option<bool>
If true, immediately subscribes you to events “exit”, “stdout”, “stderr”, “initialized” and “remoteInspectorData” for the debug session. Default: true.
Trait Implementations§
source§impl<'a> Clone for LaunchDebugSessionParams<'a>
impl<'a> Clone for LaunchDebugSessionParams<'a>
source§fn clone(&self) -> LaunchDebugSessionParams<'a>
fn clone(&self) -> LaunchDebugSessionParams<'a>
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<'a> Debug for LaunchDebugSessionParams<'a>
impl<'a> Debug for LaunchDebugSessionParams<'a>
Auto Trait Implementations§
impl<'a> Freeze for LaunchDebugSessionParams<'a>
impl<'a> RefUnwindSafe for LaunchDebugSessionParams<'a>
impl<'a> Send for LaunchDebugSessionParams<'a>
impl<'a> Sync for LaunchDebugSessionParams<'a>
impl<'a> Unpin for LaunchDebugSessionParams<'a>
impl<'a> UnwindSafe for LaunchDebugSessionParams<'a>
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