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

pub struct SourceId { /* fields omitted */ }

Unique identifier for a source of packages.

Methods

impl 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");

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.

Creates an implementation of Source corresponding to this ID.

Trait Implementations

impl Clone for SourceId
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for SourceId
[src]

impl Debug for SourceId
[src]

Formats the value using the given formatter.

impl PartialEq for SourceId
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for SourceId
[src]

This method returns an ordering between self and other values if one exists. Read more

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

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

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

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

impl Ord for SourceId
[src]

This method returns an Ordering between self and other. Read more

impl Encodable for SourceId
[src]

Serialize a value using an Encoder.

impl Decodable for SourceId
[src]

Deserialize a value using a Decoder.

impl Display for SourceId
[src]

Formats the value using the given formatter.

impl Hash for SourceId
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.