Struct cargo::core::source::SourceId [−][src]
Unique identifier for a source of packages.
Implementations
impl SourceId
[src]
pub fn from_url(string: &str) -> CargoResult<SourceId>
[src]
Parses a source URL and returns the corresponding ID.
Example
use cargo::core::SourceId; SourceId::from_url("git+https://github.com/alexcrichton/\ libssh2-static-sys#80e71a3021618eb05\ 656c58fb7c5ef5f12bc747f");
pub fn into_url(&self) -> SourceIdIntoUrl<'_>
[src]
A view of the SourceId
that can be Display
ed as a URL.
pub fn for_path(path: &Path) -> CargoResult<SourceId>
[src]
Creates a SourceId
from a filesystem path.
path
: an absolute path.
pub fn for_git(url: &Url, reference: GitReference) -> CargoResult<SourceId>
[src]
Creates a SourceId
from a Git reference.
pub fn for_registry(url: &Url) -> CargoResult<SourceId>
[src]
Creates a SourceId from a registry URL.
pub fn for_local_registry(path: &Path) -> CargoResult<SourceId>
[src]
Creates a SourceId from a local registry path.
pub fn for_directory(path: &Path) -> CargoResult<SourceId>
[src]
Creates a SourceId
from a directory path.
pub fn crates_io(config: &Config) -> CargoResult<SourceId>
[src]
Returns the SourceId
corresponding to the main repository.
This is the main cargo registry by default, but it can be overridden in
a .cargo/config
.
pub fn alt_registry(config: &Config, key: &str) -> CargoResult<SourceId>
[src]
pub fn url(&self) -> &Url
[src]
Gets this source URL.
pub fn canonical_url(&self) -> &CanonicalUrl
[src]
Gets the canonical URL of this source, used for internal comparison purposes.
pub fn display_index(self) -> String
[src]
pub fn display_registry_name(self) -> String
[src]
pub fn is_path(self) -> bool
[src]
Returns true
if this source is from a filesystem path.
pub fn is_registry(self) -> bool
[src]
Returns true
if this source is from a registry (either local or not).
pub fn is_remote_registry(self) -> bool
[src]
Returns true
if this source is a “remote” registry.
“remote” may also mean a file URL to a git index, so it is not
necessarily “remote”. This just means it is not local-registry
.
pub fn is_git(self) -> bool
[src]
Returns true
if this source from a Git repository.
pub fn load<'a>(
self,
config: &'a Config,
yanked_whitelist: &HashSet<PackageId>
) -> CargoResult<Box<dyn Source + 'a>>
[src]
self,
config: &'a Config,
yanked_whitelist: &HashSet<PackageId>
) -> CargoResult<Box<dyn Source + 'a>>
Creates an implementation of Source
corresponding to this ID.
pub fn precise(self) -> Option<&'static str>
[src]
Gets the value of the precise field.
pub fn git_reference(self) -> Option<&'static GitReference>
[src]
Gets the Git reference if this is a git source, otherwise None
.
pub fn with_precise(self, v: Option<String>) -> SourceId
[src]
Creates a new SourceId
from this source with the given precise
.
pub fn is_default_registry(self) -> bool
[src]
Returns true
if the remote registry is the standard https://crates.io.
pub fn stable_hash<S: Hasher>(self, workspace: &Path, into: &mut S)
[src]
Hashes self
.
For paths, remove the workspace prefix so the same source will give the same hash in different locations.
pub fn full_eq(self, other: SourceId) -> bool
[src]
pub fn full_hash<S: Hasher>(self, into: &mut S)
[src]
Trait Implementations
impl Clone for SourceId
[src]
impl Copy for SourceId
[src]
impl Debug for SourceId
[src]
impl<'de> Deserialize<'de> for SourceId
[src]
fn deserialize<D>(d: D) -> Result<SourceId, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl Display for SourceId
[src]
impl Eq for SourceId
[src]
impl Hash for SourceId
[src]
fn hash<S: Hasher>(&self, into: &mut S)
[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl Ord for SourceId
[src]
fn cmp(&self, other: &SourceId) -> Ordering
[src]
#[must_use]pub fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]
impl PartialEq<SourceId> for SourceId
[src]
fn eq(&self, other: &SourceId) -> bool
[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialOrd<SourceId> for SourceId
[src]
fn partial_cmp(&self, other: &SourceId) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl Serialize for SourceId
[src]
impl StructuralEq for SourceId
[src]
Auto Trait Implementations
impl RefUnwindSafe for SourceId
impl Send for SourceId
impl Sync for SourceId
impl Unpin for SourceId
impl UnwindSafe for SourceId
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,