pub struct GitSource<'cfg> {
remote: GitRemote,
manifest_reference: GitReference,
locked_rev: Option<Oid>,
source_id: SourceId,
path_source: Option<PathSource<'cfg>>,
ident: String,
config: &'cfg Config,
}
Fields§
§remote: GitRemote
§manifest_reference: GitReference
§locked_rev: Option<Oid>
§source_id: SourceId
§path_source: Option<PathSource<'cfg>>
§ident: String
§config: &'cfg Config
Implementations§
Trait Implementations§
source§impl<'cfg> Source for GitSource<'cfg>
impl<'cfg> Source for GitSource<'cfg>
source§fn query(
&mut self,
dep: &Dependency,
kind: QueryKind,
f: &mut dyn FnMut(Summary)
) -> Poll<CargoResult<()>>
fn query( &mut self, dep: &Dependency, kind: QueryKind, f: &mut dyn FnMut(Summary) ) -> Poll<CargoResult<()>>
Attempts to find the packages that match a dependency request.
source§fn supports_checksums(&self) -> bool
fn supports_checksums(&self) -> bool
Returns whether or not this source will return summaries with
checksums listed.
source§fn 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.source§fn block_until_ready(&mut self) -> CargoResult<()>
fn block_until_ready(&mut self) -> CargoResult<()>
Block until all outstanding Poll::Pending requests are
Poll::Ready
. Read moresource§fn 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>
source§fn 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
source§fn describe(&self) -> String
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])
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) -> Poll<CargoResult<bool>>
fn is_yanked(&mut self, _pkg: PackageId) -> Poll<CargoResult<bool>>
Query if a package is yanked. Only registry sources can mark packages
as yanked. This ignores the yanked whitelist.
source§fn 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.
source§fn 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, kind: QueryKind ) -> Poll<CargoResult<Vec<Summary>>>
fn download_now( self: Box<Self>, package: PackageId, config: &Config ) -> CargoResult<Package>where Self: Sized,
source§fn 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
source§fn 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 GitSource<'cfg>
impl<'cfg> !Send for GitSource<'cfg>
impl<'cfg> !Sync for GitSource<'cfg>
impl<'cfg> Unpin for GitSource<'cfg>
impl<'cfg> !UnwindSafe for GitSource<'cfg>
Blanket Implementations§
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 256 bytes