pub struct DependencySurface {
pub dependencies: Vec<Dependency>,
pub lockfile: Option<LockfileInfo>,
pub issues: Vec<DependencyIssue>,
}Expand description
Dependency information extracted from lockfiles and manifests.
Fields§
§dependencies: Vec<Dependency>Parsed dependencies.
lockfile: Option<LockfileInfo>Lockfile information.
issues: Vec<DependencyIssue>Issues found in dependency analysis.
Trait Implementations§
Source§impl Clone for DependencySurface
impl Clone for DependencySurface
Source§fn clone(&self) -> DependencySurface
fn clone(&self) -> DependencySurface
Returns a duplicate 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 DependencySurface
impl Debug for DependencySurface
Source§impl Default for DependencySurface
impl Default for DependencySurface
Source§fn default() -> DependencySurface
fn default() -> DependencySurface
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DependencySurface
impl<'de> Deserialize<'de> for DependencySurface
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
Auto Trait Implementations§
impl Freeze for DependencySurface
impl RefUnwindSafe for DependencySurface
impl Send for DependencySurface
impl Sync for DependencySurface
impl Unpin for DependencySurface
impl UnsafeUnpin for DependencySurface
impl UnwindSafe for DependencySurface
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