pub struct PackagePathResolver<'a> { /* private fields */ }Expand description
Resolve-side package path resolver (no network install).
Implementations§
Source§impl<'a> PackagePathResolver<'a>
impl<'a> PackagePathResolver<'a>
Sourcepub fn new(
cwd: impl AsRef<Path>,
agent_dir: impl AsRef<Path>,
settings_manager: &'a SettingsManager,
) -> Self
pub fn new( cwd: impl AsRef<Path>, agent_dir: impl AsRef<Path>, settings_manager: &'a SettingsManager, ) -> Self
Create a resolver rooted at cwd / agent_dir with live settings.
Sourcepub fn resolve(&self) -> Result<ResolvedPaths, PackageResolveError>
pub fn resolve(&self) -> Result<ResolvedPaths, PackageResolveError>
Resolve all configured packages, local settings paths, and auto-discovery.
Missing npm/git installs are skipped (no network install in Phase 3).
§Errors
Returns PackageResolveError::ProjectNotTrusted when project package
storage is accessed while the project is untrusted.
Sourcepub fn resolve_extension_sources(
&self,
sources: &[String],
temporary: bool,
local: bool,
) -> Result<ResolvedPaths, PackageResolveError>
pub fn resolve_extension_sources( &self, sources: &[String], temporary: bool, local: bool, ) -> Result<ResolvedPaths, PackageResolveError>
Resolve temporary/CLI extension package sources.
§Errors
Returns PackageResolveError when project package storage is accessed
while untrusted (should not happen for temporary scope).
Auto Trait Implementations§
impl<'a> !Freeze for PackagePathResolver<'a>
impl<'a> !RefUnwindSafe for PackagePathResolver<'a>
impl<'a> !UnwindSafe for PackagePathResolver<'a>
impl<'a> Send for PackagePathResolver<'a>
impl<'a> Sync for PackagePathResolver<'a>
impl<'a> Unpin for PackagePathResolver<'a>
impl<'a> UnsafeUnpin for PackagePathResolver<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.