pub struct PathSource<'cfg> { /* private fields */ }
Implementations
sourceimpl<'cfg> PathSource<'cfg>
impl<'cfg> PathSource<'cfg>
sourcepub fn new(
path: &Path,
source_id: SourceId,
config: &'cfg Config
) -> PathSource<'cfg>
pub fn new(
path: &Path,
source_id: SourceId,
config: &'cfg Config
) -> PathSource<'cfg>
Invoked with an absolute path to a directory that contains a Cargo.toml
.
This source will only return the package at precisely the path
specified, and it will be an error if there’s not a package at path
.
sourcepub fn new_recursive(
root: &Path,
id: SourceId,
config: &'cfg Config
) -> PathSource<'cfg>
pub fn new_recursive(
root: &Path,
id: SourceId,
config: &'cfg Config
) -> PathSource<'cfg>
Creates a new source which is walked recursively to discover packages.
This is similar to the new
method except that instead of requiring a
valid package to be present at root
the folder is walked entirely to
crawl for packages.
Note that this should be used with care and likely shouldn’t be chosen by default!
pub fn preload_with(&mut self, pkg: Package)
pub fn root_package(&mut self) -> CargoResult<Package>
pub fn read_packages(&self) -> CargoResult<Vec<Package>>
sourcepub fn list_files(&self, pkg: &Package) -> CargoResult<Vec<PathBuf>>
pub fn list_files(&self, pkg: &Package) -> CargoResult<Vec<PathBuf>>
List all files relevant to building this package inside this source.
This function will use the appropriate methods to determine the
set of files underneath this source’s directory which are relevant for
building pkg
.
The basic assumption of this method is that all files in the directory are relevant for building this package, but it also contains logic to use other methods like .gitignore to filter the list of files.
pub fn last_modified_file(
&self,
pkg: &Package
) -> CargoResult<(FileTime, PathBuf)>
pub fn path(&self) -> &Path
pub fn update(&mut self) -> CargoResult<()>
Trait Implementations
sourceimpl<'cfg> Debug for PathSource<'cfg>
impl<'cfg> Debug for PathSource<'cfg>
sourceimpl<'cfg> Source for PathSource<'cfg>
impl<'cfg> Source for PathSource<'cfg>
sourcefn query(
&mut self,
dep: &Dependency,
f: &mut dyn FnMut(Summary)
) -> Poll<CargoResult<()>>
fn query(
&mut self,
dep: &Dependency,
f: &mut dyn FnMut(Summary)
) -> Poll<CargoResult<()>>
Attempts to find the packages that match a dependency request.
sourcefn fuzzy_query(
&mut self,
_dep: &Dependency,
f: &mut dyn FnMut(Summary)
) -> Poll<CargoResult<()>>
fn fuzzy_query(
&mut self,
_dep: &Dependency,
f: &mut dyn FnMut(Summary)
) -> Poll<CargoResult<()>>
Attempts to find the packages that are close to a dependency request.
Each source gets to define what close
means for it.
Path/Git sources may return all dependencies that are at that URI,
whereas an Index
source may return dependencies that have the same canonicalization. Read more
sourcefn supports_checksums(&self) -> bool
fn supports_checksums(&self) -> bool
Returns whether or not this source will return summaries with checksums listed. Read more
sourcefn requires_precise(&self) -> bool
fn requires_precise(&self) -> bool
Returns whether or not this source will return summaries with
the precise
field in the source id listed. Read more
sourcefn download(&mut self, id: PackageId) -> CargoResult<MaybePackage>
fn download(&mut self, id: PackageId) -> CargoResult<MaybePackage>
Fetches the full package for each name and version specified.
fn finish_download(
&mut self,
_id: PackageId,
_data: Vec<u8>
) -> CargoResult<Package>
sourcefn fingerprint(&self, pkg: &Package) -> CargoResult<String>
fn fingerprint(&self, pkg: &Package) -> CargoResult<String>
Generates a unique string which represents the fingerprint of the current state of the source. Read more
sourcefn describe(&self) -> String
fn describe(&self) -> String
Describes this source in a human readable fashion, used for display in resolver error messages currently. Read more
sourcefn add_to_yanked_whitelist(&mut self, _pkgs: &[PackageId])
fn add_to_yanked_whitelist(&mut self, _pkgs: &[PackageId])
Add a number of crates that should be whitelisted for showing up during queries, even if they are yanked. Currently only applies to registry sources. Read more
sourcefn is_yanked(&mut self, _pkg: PackageId) -> CargoResult<bool>
fn is_yanked(&mut self, _pkg: PackageId) -> CargoResult<bool>
Query if a package is yanked. Only registry sources can mark packages as yanked. This ignores the yanked whitelist. Read more
sourcefn block_until_ready(&mut self) -> CargoResult<()>
fn block_until_ready(&mut self) -> CargoResult<()>
Block until all outstanding Poll::Pending requests are Poll::Ready
. Read more
sourcefn invalidate_cache(&mut self)
fn invalidate_cache(&mut self)
Ensure that the source is fully up-to-date for the current session on the next query.
sourcefn replaced_source_id(&self) -> SourceId
fn replaced_source_id(&self) -> SourceId
Returns the replaced SourceId
corresponding to this source.
fn query_vec(&mut self, dep: &Dependency) -> Poll<CargoResult<Vec<Summary>>>
fn download_now(
self: Box<Self>,
package: PackageId,
config: &Config
) -> CargoResult<Package> where
Self: Sized,
sourcefn verify(&self, _pkg: PackageId) -> CargoResult<()>
fn verify(&self, _pkg: PackageId) -> CargoResult<()>
If this source supports it, verifies the source of the package specified. Read more
sourcefn is_replaced(&self) -> bool
fn is_replaced(&self) -> bool
Returns whether a source is being replaced by another here.
Auto Trait Implementations
impl<'cfg> !RefUnwindSafe for PathSource<'cfg>
impl<'cfg> !Send for PathSource<'cfg>
impl<'cfg> !Sync for PathSource<'cfg>
impl<'cfg> Unpin for PathSource<'cfg>
impl<'cfg> !UnwindSafe for PathSource<'cfg>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more