pub struct Capabilities {Show 37 fields
pub additional_module_columns: Option<Vec<ColumnDescriptor>>,
pub completion_trigger_characters: Option<Vec<String>>,
pub exception_breakpoint_filters: Option<Vec<ExceptionBreakpointsFilter>>,
pub support_suspend_debuggee: Option<bool>,
pub support_terminate_debuggee: Option<bool>,
pub supported_checksum_algorithms: Option<Vec<ChecksumAlgorithm>>,
pub supports_breakpoint_locations_request: Option<bool>,
pub supports_cancel_request: Option<bool>,
pub supports_clipboard_context: Option<bool>,
pub supports_completions_request: Option<bool>,
pub supports_conditional_breakpoints: Option<bool>,
pub supports_configuration_done_request: Option<bool>,
pub supports_data_breakpoints: Option<bool>,
pub supports_delayed_stack_trace_loading: Option<bool>,
pub supports_disassemble_request: Option<bool>,
pub supports_evaluate_for_hovers: Option<bool>,
pub supports_exception_filter_options: Option<bool>,
pub supports_exception_info_request: Option<bool>,
pub supports_exception_options: Option<bool>,
pub supports_function_breakpoints: Option<bool>,
pub supports_goto_targets_request: Option<bool>,
pub supports_hit_conditional_breakpoints: Option<bool>,
pub supports_instruction_breakpoints: Option<bool>,
pub supports_loaded_sources_request: Option<bool>,
pub supports_log_points: Option<bool>,
pub supports_modules_request: Option<bool>,
pub supports_read_memory_request: Option<bool>,
pub supports_restart_frame: Option<bool>,
pub supports_restart_request: Option<bool>,
pub supports_set_expression: Option<bool>,
pub supports_set_variable: Option<bool>,
pub supports_step_back: Option<bool>,
pub supports_step_in_targets_request: Option<bool>,
pub supports_stepping_granularity: Option<bool>,
pub supports_terminate_request: Option<bool>,
pub supports_terminate_threads_request: Option<bool>,
pub supports_value_formatting_options: Option<bool>,
}
Expand description
Information about the capabilities of a debug adapter.
Fields§
§additional_module_columns: Option<Vec<ColumnDescriptor>>
The set of additional module information exposed by the debug adapter.
completion_trigger_characters: Option<Vec<String>>
The set of characters that should trigger completion in a REPL. If not specified, the UI should assume the ‘.’ character.
exception_breakpoint_filters: Option<Vec<ExceptionBreakpointsFilter>>
Available exception filter options for the ‘setExceptionBreakpoints’ request.
support_suspend_debuggee: Option<bool>
The debug adapter supports the ‘suspendDebuggee’ attribute on the ‘disconnect’ request.
support_terminate_debuggee: Option<bool>
The debug adapter supports the ‘terminateDebuggee’ attribute on the ‘disconnect’ request.
supported_checksum_algorithms: Option<Vec<ChecksumAlgorithm>>
Checksum algorithms supported by the debug adapter.
supports_breakpoint_locations_request: Option<bool>
The debug adapter supports the ‘breakpointLocations’ request.
supports_cancel_request: Option<bool>
The debug adapter supports the ‘cancel’ request.
supports_clipboard_context: Option<bool>
The debug adapter supports the ‘clipboard’ context value in the ‘evaluate’ request.
supports_completions_request: Option<bool>
The debug adapter supports the ‘completions’ request.
supports_conditional_breakpoints: Option<bool>
The debug adapter supports conditional breakpoints.
supports_configuration_done_request: Option<bool>
The debug adapter supports the ‘configurationDone’ request.
supports_data_breakpoints: Option<bool>
The debug adapter supports data breakpoints.
supports_delayed_stack_trace_loading: Option<bool>
The debug adapter supports the delayed loading of parts of the stack, which requires that both the ‘startFrame’ and ‘levels’ arguments and an optional ‘totalFrames’ result of the ‘StackTrace’ request are supported.
supports_disassemble_request: Option<bool>
The debug adapter supports the ‘disassemble’ request.
supports_evaluate_for_hovers: Option<bool>
The debug adapter supports a (side effect free) evaluate request for data hovers.
supports_exception_filter_options: Option<bool>
The debug adapter supports ‘filterOptions’ as an argument on the ‘setExceptionBreakpoints’ request.
supports_exception_info_request: Option<bool>
The debug adapter supports the ‘exceptionInfo’ request.
supports_exception_options: Option<bool>
The debug adapter supports ‘exceptionOptions’ on the setExceptionBreakpoints request.
supports_function_breakpoints: Option<bool>
The debug adapter supports function breakpoints.
supports_goto_targets_request: Option<bool>
The debug adapter supports the ‘gotoTargets’ request.
supports_hit_conditional_breakpoints: Option<bool>
The debug adapter supports breakpoints that break execution after a specified number of hits.
supports_instruction_breakpoints: Option<bool>
The debug adapter supports adding breakpoints based on instruction references.
supports_loaded_sources_request: Option<bool>
The debug adapter supports the ‘loadedSources’ request.
supports_log_points: Option<bool>
The debug adapter supports logpoints by interpreting the ‘logMessage’ attribute of the SourceBreakpoint.
supports_modules_request: Option<bool>
The debug adapter supports the ‘modules’ request.
supports_read_memory_request: Option<bool>
The debug adapter supports the ‘readMemory’ request.
supports_restart_frame: Option<bool>
The debug adapter supports restarting a frame.
supports_restart_request: Option<bool>
The debug adapter supports the ‘restart’ request. In this case a client should not implement ‘restart’ by terminating and relaunching the adapter but by calling the RestartRequest.
supports_set_expression: Option<bool>
The debug adapter supports the ‘setExpression’ request.
supports_set_variable: Option<bool>
The debug adapter supports setting a variable to a value.
supports_step_back: Option<bool>
The debug adapter supports stepping back via the ‘stepBack’ and ‘reverseContinue’ requests.
supports_step_in_targets_request: Option<bool>
The debug adapter supports the ‘stepInTargets’ request.
supports_stepping_granularity: Option<bool>
The debug adapter supports stepping granularities (argument ‘granularity’) for the stepping requests.
supports_terminate_request: Option<bool>
The debug adapter supports the ‘terminate’ request.
supports_terminate_threads_request: Option<bool>
The debug adapter supports the ‘terminateThreads’ request.
supports_value_formatting_options: Option<bool>
The debug adapter supports a ‘format’ attribute on the stackTraceRequest, variablesRequest, and evaluateRequest.
Trait Implementations§
source§impl Clone for Capabilities
impl Clone for Capabilities
source§fn clone(&self) -> Capabilities
fn clone(&self) -> Capabilities
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for Capabilities
impl Debug for Capabilities
source§impl Default for Capabilities
impl Default for Capabilities
source§fn default() -> Capabilities
fn default() -> Capabilities
source§impl<'de> Deserialize<'de> for Capabilities
impl<'de> Deserialize<'de> for Capabilities
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>,
source§impl PartialEq for Capabilities
impl PartialEq for Capabilities
source§impl Serialize for Capabilities
impl Serialize for Capabilities
impl StructuralPartialEq for Capabilities
Auto Trait Implementations§
impl Freeze for Capabilities
impl RefUnwindSafe for Capabilities
impl Send for Capabilities
impl Sync for Capabilities
impl Unpin for Capabilities
impl UnwindSafe for Capabilities
Blanket Implementations§
source§impl<T> AnyDebug for T
impl<T> AnyDebug for T
source§fn as_any_ref(&self) -> &(dyn Any + 'static)
fn as_any_ref(&self) -> &(dyn Any + 'static)
Any
.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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> FmtForward for T
impl<T> FmtForward for T
source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moresource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moresource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.source§impl<T> StorageAsMut for T
impl<T> StorageAsMut for T
fn storage<Type>(&mut self) -> StorageMut<'_, Self, Type>where
Type: Mappable,
fn storage_as_mut<Type>(&mut self) -> StorageMut<'_, Self, Type>where
Type: Mappable,
source§impl<T> StorageAsRef for T
impl<T> StorageAsRef for T
fn storage<Type>(&self) -> StorageRef<'_, Self, Type>where
Type: Mappable,
fn storage_as_ref<Type>(&self) -> StorageRef<'_, Self, Type>where
Type: Mappable,
source§impl<T> Tap for T
impl<T> Tap for T
source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read moresource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read moresource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read moresource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read moresource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read moresource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read moresource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.