Struct PathSource

Source
pub struct PathSource<'cfg> { /* private fields */ }

Implementations§

Source§

impl<'cfg> PathSource<'cfg>

Source

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.

Source

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!

Source

pub fn preload_with(&mut self, pkg: Package)

Source

pub fn root_package(&mut self) -> CargoResult<Package>

Source

pub fn read_packages(&self) -> CargoResult<Vec<Package>>

Source

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.

Source

pub fn last_modified_file( &self, pkg: &Package, ) -> CargoResult<(FileTime, PathBuf)>

Source

pub fn path(&self) -> &Path

Trait Implementations§

Source§

impl<'cfg> Debug for PathSource<'cfg>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'cfg> Source for PathSource<'cfg>

Source§

fn query( &mut self, dep: &Dependency, f: &mut dyn FnMut(Summary), ) -> CargoResult<()>

Attempts to find the packages that match a dependency request.
Source§

fn fuzzy_query( &mut self, _dep: &Dependency, f: &mut dyn FnMut(Summary), ) -> 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.
Source§

fn supports_checksums(&self) -> bool

Returns whether or not this source will return summaries with checksums listed.
Source§

fn requires_precise(&self) -> bool

Returns whether or not this source will return summaries with the precise field in the source id listed.
Source§

fn source_id(&self) -> SourceId

Returns the SourceId corresponding to this source.
Source§

fn update(&mut self) -> CargoResult<()>

Performs any network operations required to get the entire list of all names, versions and dependencies of packages managed by the Source.
Source§

fn download(&mut self, id: PackageId) -> CargoResult<MaybePackage>

Fetches the full package for each name and version specified.
Source§

fn finish_download( &mut self, _id: PackageId, _data: Vec<u8>, ) -> CargoResult<Package>

Source§

fn fingerprint(&self, pkg: &Package) -> CargoResult<String>

Generates a unique string which represents the fingerprint of the current state of the source. Read more
Source§

fn describe(&self) -> String

Describes this source in a human readable fashion, used for display in resolver error messages currently.
Source§

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.
Source§

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.
Source§

fn replaced_source_id(&self) -> SourceId

Returns the replaced SourceId corresponding to this source.
Source§

fn query_vec(&mut self, dep: &Dependency) -> CargoResult<Vec<Summary>>

Source§

fn download_now( self: Box<Self>, package: PackageId, config: &Config, ) -> CargoResult<Package>
where Self: Sized,

Source§

fn verify(&self, _pkg: PackageId) -> CargoResult<()>

If this source supports it, verifies the source of the package specified. Read more
Source§

fn is_replaced(&self) -> bool

Returns whether a source is being replaced by another here.

Auto Trait Implementations§

§

impl<'cfg> Freeze for PathSource<'cfg>

§

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§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> ErasedDestructor for T
where T: 'static,