pub trait ParseResultInfo {
type Dependency: DependencyInfo;
// Required methods
fn dependencies(&self) -> &[Self::Dependency];
fn workspace_root(&self) -> Option<&Path>;
}Expand description
Parse result information trait.
§Note
The new Ecosystem trait uses crate::ecosystem::ParseResult instead.
This trait is kept for backward compatibility during migration.
Required Associated Types§
Required Methods§
Sourcefn dependencies(&self) -> &[Self::Dependency]
fn dependencies(&self) -> &[Self::Dependency]
All dependencies found in the manifest.
Sourcefn workspace_root(&self) -> Option<&Path>
fn workspace_root(&self) -> Option<&Path>
Workspace root path (for monorepo support).