Struct cargo::sources::registry::RegistrySource[][src]

pub struct RegistrySource<'cfg> { /* fields omitted */ }
Expand description

A “source” for a local or remote registry.

This contains common functionality that is shared between the two registry kinds, with the registry-specific logic implemented as part of the RegistryData trait referenced via the ops field.

Implementations

Decode the configuration stored within the registry.

This requires that the index has been at least checked out.

Trait Implementations

Attempts to find the packages that match a dependency request.

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

Returns whether or not this source will return summaries with checksums listed. Read more

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

Returns the SourceId corresponding to this source.

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

Fetches the full package for each name and version specified.

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

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

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

Query if a package is yanked. Only registry sources can mark packages as yanked. This ignores the yanked whitelist. Read more

Returns the replaced SourceId corresponding to this source.

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

Returns whether a source is being replaced by another here.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.