pub struct InitializeArguments {
pub client_id: Option<String>,
pub client_name: Option<String>,
pub adapter_id: String,
pub locale: Option<String>,
pub lines_start_at1: bool,
pub columns_start_at1: bool,
pub path_format: Option<String>,
pub supports_variable_type: bool,
pub supports_variable_paging: bool,
pub supports_run_in_terminal_request: bool,
pub supports_memory_references: bool,
pub supports_progress_reporting: bool,
}Expand description
Initialize request arguments
Fields§
§client_id: Option<String>§client_name: Option<String>§adapter_id: String§locale: Option<String>§lines_start_at1: bool§columns_start_at1: bool§path_format: Option<String>§supports_variable_type: bool§supports_variable_paging: bool§supports_run_in_terminal_request: bool§supports_memory_references: bool§supports_progress_reporting: boolTrait Implementations§
Source§impl Clone for InitializeArguments
impl Clone for InitializeArguments
Source§fn clone(&self) -> InitializeArguments
fn clone(&self) -> InitializeArguments
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 Debug for InitializeArguments
impl Debug for InitializeArguments
Source§impl Default for InitializeArguments
impl Default for InitializeArguments
Source§impl<'de> Deserialize<'de> for InitializeArguments
impl<'de> Deserialize<'de> for InitializeArguments
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
Auto Trait Implementations§
impl Freeze for InitializeArguments
impl RefUnwindSafe for InitializeArguments
impl Send for InitializeArguments
impl Sync for InitializeArguments
impl Unpin for InitializeArguments
impl UnwindSafe for InitializeArguments
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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 more