pub enum Request {
Show 15 variants InitializeBuild(RequestIdInitializeBuild), Shutdown(RequestId), WorkspaceBuildTargets(RequestId), WorkspaceReload(RequestId), BuildTargetDependencyModules(RequestIdBuildTargetDependencyModules), DebugSessionStart(RequestIdDebugSessionStart), BuildTargetSources(RequestIdBuildTargetSources), TextDocumentInverseSources(RequestIdTextDocumentInverseSources), BuildTargetDependencySources(RequestIdBuildTargetDependencySources), BuildTargetResources(RequestIdBuildTargetResources), BuildTargetRun(RequestIdBuildTargetRun), BuildTargetCompile(RequestIdBuildTargetCompile), BuildTargetTest(RequestIdBuildTargetTest), BuildTargetCleanCache(RequestIdBuildTargetCleanCache), Custom(RequestId, &'static strValue),
}

Variants

InitializeBuild(RequestIdInitializeBuild)

Client->Server: Initialize Server

Shutdown(RequestId)

Client->Server: Shutdown server

WorkspaceBuildTargets(RequestId)

Client->Server: Get a list of all available build targets in the workspace.

WorkspaceReload(RequestId)

Client->Server: Reload the build configuration.

BuildTargetDependencyModules(RequestIdBuildTargetDependencyModules)

Client->Server: Get libraries of build target dependencies that are external to the workspace including meta information about library and their sources. It’s an extended version of buildTarget/sources

DebugSessionStart(RequestIdDebugSessionStart)

Client->Server: Debug build target(s)

BuildTargetSources(RequestIdBuildTargetSources)

Client->Server: Get text documents and directories that belong to a build target.

TextDocumentInverseSources(RequestIdTextDocumentInverseSources)

Client->Server: Get build targets containing a text document.

BuildTargetDependencySources(RequestIdBuildTargetDependencySources)

Client->Server: Get sources of build target dependencies that are external to the workspace.

BuildTargetResources(RequestIdBuildTargetResources)

Client->Server: Get list of resources of a given list of build targets.

BuildTargetRun(RequestIdBuildTargetRun)

Client->Server: Run a build target

BuildTargetCompile(RequestIdBuildTargetCompile)

Client->Server: Run a compile target

BuildTargetTest(RequestIdBuildTargetTest)

Client->Server: Run a test target

BuildTargetCleanCache(RequestIdBuildTargetCleanCache)

Client->Server: reset any state associated with a given build target

Custom(RequestId, &'static strValue)

Any custom message not yet supported in the crate or custom

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more