Enum vergen_git2::DependencyKind
pub enum DependencyKind {
Normal,
Development,
Build,
// some variants omitted
}Available on crate feature
cargo only.Expand description
Dependencies can come in three kinds
Variants§
Normal
The ‘normal’ kind
Development
Those used in tests only
Build
Those used in build scripts only
Trait Implementations§
§impl Clone for DependencyKind
impl Clone for DependencyKind
§fn clone(&self) -> DependencyKind
fn clone(&self) -> DependencyKind
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for DependencyKind
impl Debug for DependencyKind
§impl Default for DependencyKind
impl Default for DependencyKind
§fn default() -> DependencyKind
fn default() -> DependencyKind
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for DependencyKind
impl<'de> Deserialize<'de> for DependencyKind
§fn deserialize<__D>(
__deserializer: __D
) -> Result<DependencyKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<DependencyKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Display for DependencyKind
impl Display for DependencyKind
§impl Hash for DependencyKind
impl Hash for DependencyKind
§impl PartialEq for DependencyKind
impl PartialEq for DependencyKind
§fn eq(&self, other: &DependencyKind) -> bool
fn eq(&self, other: &DependencyKind) -> bool
This method tests for
self and other values to be equal, and is used
by ==.§impl Serialize for DependencyKind
impl Serialize for DependencyKind
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for DependencyKind
impl Eq for DependencyKind
impl StructuralPartialEq for DependencyKind
Auto Trait Implementations§
impl RefUnwindSafe for DependencyKind
impl Send for DependencyKind
impl Sync for DependencyKind
impl Unpin for DependencyKind
impl UnwindSafe for DependencyKind
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