pub struct ManifestDependency {
pub manifest_path: PathBuf,
pub package_name: Option<String>,
pub dependency_name: String,
pub declared_name: String,
pub kind: ReviewDependencyKind,
pub target: Option<String>,
}Fields§
§manifest_path: PathBuf§package_name: Option<String>§dependency_name: String§declared_name: String§kind: ReviewDependencyKind§target: Option<String>Trait Implementations§
Source§impl Clone for ManifestDependency
impl Clone for ManifestDependency
Source§fn clone(&self) -> ManifestDependency
fn clone(&self) -> ManifestDependency
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 ManifestDependency
impl Debug for ManifestDependency
Source§impl PartialEq for ManifestDependency
impl PartialEq for ManifestDependency
impl Eq for ManifestDependency
impl StructuralPartialEq for ManifestDependency
Auto Trait Implementations§
impl Freeze for ManifestDependency
impl RefUnwindSafe for ManifestDependency
impl Send for ManifestDependency
impl Sync for ManifestDependency
impl Unpin for ManifestDependency
impl UnsafeUnpin for ManifestDependency
impl UnwindSafe for ManifestDependency
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