Struct node_maintainer::NpmPackageLockEntry
source · pub struct NpmPackageLockEntry {
pub name: Option<String>,
pub version: Option<String>,
pub resolved: Option<String>,
pub integrity: Option<String>,
pub dependencies: IndexMap<String, String>,
pub dev_dependencies: IndexMap<String, String>,
pub optional_dependencies: IndexMap<String, String>,
pub peer_dependencies: IndexMap<String, String>,
}Fields§
§name: Option<String>§version: Option<String>§resolved: Option<String>§integrity: Option<String>§dependencies: IndexMap<String, String>§dev_dependencies: IndexMap<String, String>§optional_dependencies: IndexMap<String, String>§peer_dependencies: IndexMap<String, String>Trait Implementations§
source§impl Clone for NpmPackageLockEntry
impl Clone for NpmPackageLockEntry
source§fn clone(&self) -> NpmPackageLockEntry
fn clone(&self) -> NpmPackageLockEntry
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 moresource§impl Debug for NpmPackageLockEntry
impl Debug for NpmPackageLockEntry
source§impl<'de> Deserialize<'de> for NpmPackageLockEntry
impl<'de> Deserialize<'de> for NpmPackageLockEntry
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more