pub enum DependencySource {
Workspace,
CratesIo,
Git {
url: String,
},
Path {
path: String,
},
}Expand description
Provenance of a dependency.
Variants§
Workspace
dep.workspace = true — version managed by the workspace root
CratesIo
dep = "1.0" or dep = { version = "1.0" } — fetched from crates.io
Git
dep = { git = "https://..." } — fetched from a git repository
Path
dep = { path = "../other-crate" } — local path dependency
Trait Implementations§
Source§impl Clone for DependencySource
impl Clone for DependencySource
Source§fn clone(&self) -> DependencySource
fn clone(&self) -> DependencySource
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DependencySource
impl Debug for DependencySource
impl Eq for DependencySource
Source§impl PartialEq for DependencySource
impl PartialEq for DependencySource
Source§fn eq(&self, other: &DependencySource) -> bool
fn eq(&self, other: &DependencySource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DependencySource
Auto Trait Implementations§
impl Freeze for DependencySource
impl RefUnwindSafe for DependencySource
impl Send for DependencySource
impl Sync for DependencySource
impl Unpin for DependencySource
impl UnsafeUnpin for DependencySource
impl UnwindSafe for DependencySource
Blanket Implementations§
impl<T> Allocation for T
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.