pub struct DebuggerExtensionsState {
pub cortex_debug: bool,
pub cpp_tools: bool,
pub code_lldb: bool,
}Expand description
Which VS Code debugger extensions are installed in the host.
Fields§
§cortex_debug: boolmarus25.cortex-debug is installed.
cpp_tools: boolms-vscode.cpptools is installed.
code_lldb: boolvadimcn.vscode-lldb is installed.
Trait Implementations§
Source§impl Clone for DebuggerExtensionsState
impl Clone for DebuggerExtensionsState
Source§fn clone(&self) -> DebuggerExtensionsState
fn clone(&self) -> DebuggerExtensionsState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DebuggerExtensionsState
Source§impl Debug for DebuggerExtensionsState
impl Debug for DebuggerExtensionsState
Auto Trait Implementations§
impl Freeze for DebuggerExtensionsState
impl RefUnwindSafe for DebuggerExtensionsState
impl Send for DebuggerExtensionsState
impl Sync for DebuggerExtensionsState
impl Unpin for DebuggerExtensionsState
impl UnsafeUnpin for DebuggerExtensionsState
impl UnwindSafe for DebuggerExtensionsState
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