pub trait WorldProvider {
// Required methods
fn entry(&self) -> Result<EntryOpts>;
fn resolve(&self) -> Result<LspUniverse>;
}Expand description
World provider for LSP universe and worlds.
Required Methods§
Sourcefn resolve(&self) -> Result<LspUniverse>
fn resolve(&self) -> Result<LspUniverse>
Get a universe instance from the given arguments.
Implementations on Foreign Types§
Source§impl WorldProvider for (ProjectInput, ImmutPath)
Available on crate feature system only.
impl WorldProvider for (ProjectInput, ImmutPath)
Available on crate feature
system only.Implementors§
impl WorldProvider for CompileOnceArgs
Available on crate feature
system only.