pub struct ScipIndexersConfig {
pub rust: String,
pub typescript: String,
pub python: String,
pub java: String,
pub go: String,
}Expand description
Per-language SCIP indexer command overrides. Empty string means auto-detect from PATH.
Commands are split on whitespace — paths with spaces are not supported. Use symlinks or PATH entries for indexers in directories with spaces.
Fields§
§rust: String§typescript: String§python: String§java: String§go: StringTrait Implementations§
Source§impl Clone for ScipIndexersConfig
impl Clone for ScipIndexersConfig
Source§fn clone(&self) -> ScipIndexersConfig
fn clone(&self) -> ScipIndexersConfig
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 ScipIndexersConfig
impl Debug for ScipIndexersConfig
Source§impl Default for ScipIndexersConfig
impl Default for ScipIndexersConfig
Source§fn default() -> ScipIndexersConfig
fn default() -> ScipIndexersConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScipIndexersConfigwhere
ScipIndexersConfig: Default,
impl<'de> Deserialize<'de> for ScipIndexersConfigwhere
ScipIndexersConfig: Default,
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 ScipIndexersConfig
impl RefUnwindSafe for ScipIndexersConfig
impl Send for ScipIndexersConfig
impl Sync for ScipIndexersConfig
impl Unpin for ScipIndexersConfig
impl UnsafeUnpin for ScipIndexersConfig
impl UnwindSafe for ScipIndexersConfig
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