Struct cargo_lock::package::source::SourceId [−][src]
pub struct SourceId { /* fields omitted */ }Expand description
Unique identifier for a source of packages.
Implementations
impl SourceId[src]
impl SourceId[src]pub fn from_url(string: &str) -> Result<Self, Error>[src]
pub fn from_url(string: &str) -> Result<Self, 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<Self, Error>[src]
pub fn for_path(path: &Path) -> Result<Self, Error>[src]Creates a SourceId from a filesystem path.
path: an absolute path.
pub fn for_git(url: &Url, reference: GitReference) -> Result<Self, Error>[src]
pub fn for_git(url: &Url, reference: GitReference) -> Result<Self, Error>[src]Creates a SourceId from a Git reference.
pub fn for_registry(url: &Url) -> Result<Self, Error>[src]
pub fn for_registry(url: &Url) -> Result<Self, Error>[src]Creates a SourceId from a registry URL.
pub fn for_local_registry(path: &Path) -> Result<Self, Error>[src]
pub fn for_local_registry(path: &Path) -> Result<Self, Error>[src]Creates a SourceId from a local registry path.
pub fn for_directory(path: &Path) -> Result<Self, Error>[src]
pub fn for_directory(path: &Path) -> Result<Self, Error>[src]Creates a SourceId from a directory path.
pub fn display_index(&self) -> String[src]
pub fn display_index(&self) -> String[src]Human-friendly description of an index
pub fn display_registry_name(&self) -> String[src]
pub fn display_registry_name(&self) -> String[src]Human-friendly description of a registry name
pub fn is_registry(&self) -> bool[src]
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]
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 git_reference(&self) -> Option<&GitReference>[src]
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>) -> Self[src]
pub fn with_precise(&self, v: Option<String>) -> Self[src]Creates a new SourceId from this source with the given precise.
pub fn is_default_registry(&self) -> bool[src]
pub fn is_default_registry(&self) -> bool[src]Returns true if the remote registry is the standard https://crates.io.
Trait Implementations
impl<'de> Deserialize<'de> for SourceId[src]
impl<'de> Deserialize<'de> for SourceId[src]fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>[src]
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>[src]Deserialize this value from the given Serde deserializer. Read more
impl Ord for SourceId[src]
impl Ord for SourceId[src]impl PartialOrd<SourceId> for SourceId[src]
impl PartialOrd<SourceId> for SourceId[src]fn partial_cmp(&self, other: &SourceId) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &SourceId) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.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) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Eq for SourceId[src]
impl StructuralEq for SourceId[src]
impl StructuralPartialEq 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> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]pub fn equivalent(&self, key: &K) -> bool[src]
pub fn equivalent(&self, key: &K) -> bool[src]Compare self to key and return true if they are equal.
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,