tinymist_project::world

Trait EntryManager

pub trait EntryManager: EntryReader {
    // Required method
    fn mutate_entry(
        &mut self,
        state: EntryState,
    ) -> Result<EntryState, EcoVec<SourceDiagnostic>>;
}

Required Methods§

fn mutate_entry( &mut self, state: EntryState, ) -> Result<EntryState, EcoVec<SourceDiagnostic>>

Implementors§

§

impl<F> EntryManager for CompilerUniverse<F>
where F: CompilerFeat,