pub enum PackageSourceId {
DefaultRegistry,
Git(String),
Path(PathBuf),
}Variants§
Trait Implementations§
Source§impl Clone for PackageSourceId
impl Clone for PackageSourceId
Source§fn clone(&self) -> PackageSourceId
fn clone(&self) -> PackageSourceId
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 PackageSourceId
impl Debug for PackageSourceId
Source§impl Hash for PackageSourceId
impl Hash for PackageSourceId
Source§impl PartialEq for PackageSourceId
impl PartialEq for PackageSourceId
Source§fn eq(&self, other: &PackageSourceId) -> bool
fn eq(&self, other: &PackageSourceId) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PackageSourceId
impl Serialize for PackageSourceId
impl Eq for PackageSourceId
impl StructuralPartialEq for PackageSourceId
Auto Trait Implementations§
impl Freeze for PackageSourceId
impl RefUnwindSafe for PackageSourceId
impl Send for PackageSourceId
impl Sync for PackageSourceId
impl Unpin for PackageSourceId
impl UnsafeUnpin for PackageSourceId
impl UnwindSafe for PackageSourceId
Blanket Implementations§
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.