pub struct Emmyrc {Show 14 fields
pub schema: Option<String>,
pub completion: EmmyrcCompletion,
pub diagnostics: EmmyrcDiagnostic,
pub signature: EmmyrcSignature,
pub hint: EmmyrcInlayHint,
pub runtime: EmmyrcRuntime,
pub workspace: EmmyrcWorkspace,
pub resource: EmmyrcResource,
pub code_lens: EmmyrcCodeLen,
pub strict: EmmyrcStrict,
pub semantic_tokens: EmmyrcSemanticToken,
pub references: EmmyrcReference,
pub hover: EmmyrcHover,
pub document_color: EmmyrcDocumentColor,
}Fields§
§schema: Option<String>§completion: EmmyrcCompletion§diagnostics: EmmyrcDiagnostic§signature: EmmyrcSignature§hint: EmmyrcInlayHint§runtime: EmmyrcRuntime§workspace: EmmyrcWorkspace§resource: EmmyrcResource§code_lens: EmmyrcCodeLen§strict: EmmyrcStrict§semantic_tokens: EmmyrcSemanticToken§references: EmmyrcReference§hover: EmmyrcHover§document_color: EmmyrcDocumentColorImplementations§
Source§impl Emmyrc
impl Emmyrc
pub fn get_infer_config(&self, file_id: FileId) -> LuaInferConfig
pub fn get_parse_config<'cache>( &self, node_cache: &'cache mut NodeCache, ) -> ParserConfig<'cache>
pub fn pre_process_emmyrc(&mut self, workspace_root: &Path)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Emmyrc
impl<'de> Deserialize<'de> for Emmyrc
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 JsonSchema for Emmyrc
impl JsonSchema for Emmyrc
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for Emmyrc
impl RefUnwindSafe for Emmyrc
impl Send for Emmyrc
impl Sync for Emmyrc
impl Unpin for Emmyrc
impl UnwindSafe for Emmyrc
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> 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