pub struct Tier3Config {
pub enabled: bool,
pub scip_paths: HashMap<String, String>,
pub lsp_commands: HashMap<String, Vec<String>>,
pub prefer_scip: bool,
}Expand description
Tier 3 (LSP/SCIP) resolution configuration.
Fields§
§enabled: bool§scip_paths: HashMap<String, String>§lsp_commands: HashMap<String, Vec<String>>§prefer_scip: boolTrait Implementations§
Source§impl Clone for Tier3Config
impl Clone for Tier3Config
Source§fn clone(&self) -> Tier3Config
fn clone(&self) -> Tier3Config
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 Tier3Config
impl Debug for Tier3Config
Source§impl Default for Tier3Config
impl Default for Tier3Config
Source§impl<'de> Deserialize<'de> for Tier3Config
impl<'de> Deserialize<'de> for Tier3Config
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
Source§impl PartialEq for Tier3Config
impl PartialEq for Tier3Config
Source§impl Serialize for Tier3Config
impl Serialize for Tier3Config
impl StructuralPartialEq for Tier3Config
Auto Trait Implementations§
impl Freeze for Tier3Config
impl RefUnwindSafe for Tier3Config
impl Send for Tier3Config
impl Sync for Tier3Config
impl Unpin for Tier3Config
impl UnsafeUnpin for Tier3Config
impl UnwindSafe for Tier3Config
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