Struct rustsec::package::SourceId[][src]

pub struct SourceId { /* fields omitted */ }

Unique identifier for a source of packages.

Implementations

impl SourceId[src]

pub fn from_url(string: &str) -> Result<SourceId, Error>[src]

Parses a source URL and returns the corresponding ID.

Example

use cargo_lock::SourceId;
SourceId::from_url("git+https://github.com/alexcrichton/\
                    libssh2-static-sys#80e71a3021618eb05\
                    656c58fb7c5ef5f12bc747f");

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

Creates a SourceId from a filesystem path.

path: an absolute path.

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

Creates a SourceId from a Git reference.

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

Creates a SourceId from a registry URL.

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

Creates a SourceId from a local registry path.

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

Creates a SourceId from a directory path.

pub fn url(&self) -> &Url[src]

Gets this source URL.

pub fn display_index(&self) -> String[src]

Human-friendly description of an index

pub fn display_registry_name(&self) -> String[src]

Human-friendly description of a registry name

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 precise(&self) -> Option<&str>[src]

Gets the value of the precise field.

pub fn git_reference(&self) -> Option<&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.

Trait Implementations

impl Clone for SourceId[src]

impl Debug for SourceId[src]

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

impl Display for SourceId[src]

impl Eq for SourceId[src]

impl FromStr for SourceId[src]

type Err = Error

The associated error which can be returned from parsing.

impl Hash for SourceId[src]

impl Ord for SourceId[src]

impl PartialEq<SourceId> for SourceId[src]

impl PartialOrd<SourceId> for SourceId[src]

impl Serialize for SourceId[src]

impl StructuralEq for SourceId[src]

impl StructuralPartialEq for SourceId[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.