[][src]Struct cargo::core::SourceId

pub struct SourceId { /* fields omitted */ }

Unique identifier for a source of packages.

Methods

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 to_url(&self) -> SourceIdToUrl[src]

A view of the SourceId that can be Displayed as a URL

pub fn for_path(path: &Path) -> CargoResult<SourceId>[src]

Create a SourceId from a filesystem path.

Pass absolute path

pub fn for_git(url: &Url, reference: GitReference) -> CargoResult<SourceId>[src]

Crate a SourceId from a git reference

pub fn for_registry(url: &Url) -> CargoResult<SourceId>[src]

Create a SourceId from a registry url

pub fn for_local_registry(path: &Path) -> CargoResult<SourceId>[src]

Create a SourceId from a local registry path

pub fn for_directory(path: &Path) -> CargoResult<SourceId>[src]

Create 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]

Get this source URL

pub fn display_registry(self) -> String[src]

pub fn is_path(self) -> bool[src]

Is this source from a filesystem path

pub fn is_registry(self) -> bool[src]

Is this source from a registry (either local or not)

pub fn is_git(self) -> bool[src]

Is this source from a git repository

pub fn load<'a>(
    self,
    config: &'a Config,
    yanked_whitelist: &HashSet<PackageId>
) -> CargoResult<Box<dyn Source + 'a>>
[src]

Creates an implementation of Source corresponding to this ID.

pub fn precise(self) -> Option<&'static str>[src]

Get the value of the precise field

pub fn git_reference(self) -> Option<&'static GitReference>[src]

Get the git reference if this is a git source, otherwise None.

pub fn with_precise(self, v: Option<String>) -> SourceId[src]

Create a new SourceId from this source with the given precise

pub fn is_default_registry(self) -> bool[src]

Whether the remote registry is the standard https://crates.io

pub fn stable_hash<S: Hasher>(self, workspace: &Path, into: &mut S)[src]

Hash 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 PartialOrd<SourceId> for SourceId[src]

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Copy for SourceId[src]

impl PartialEq<SourceId> for SourceId[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for SourceId[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Ord for SourceId[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl Eq for SourceId[src]

impl Display for SourceId[src]

impl Debug for SourceId[src]

impl Hash for SourceId[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Serialize for SourceId[src]

impl<'de> Deserialize<'de> for SourceId[src]

Auto Trait Implementations

impl Send for SourceId

impl Sync for SourceId

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

type Output = T

Should always be Self