pub trait Workspace: Send {
    fn config(&self) -> &Box<dyn Configuration>;
    fn cfg(&self) -> &CFG;
    fn analysis(&self) -> &WorkspaceAnalysis;
    fn module(&self) -> &Module;
}

Required Methods§

Implementors§