pub struct PackageSuggestionView<'a> {
pub name: &'a str,
pub version: &'a str,
pub manifest_path: &'a Path,
pub suggestions: &'a [Suggestion],
}Expand description
One workspace member’s dependency suggestions shown in plain text reports.
Fields§
§name: &'a str§version: &'a str§manifest_path: &'a Path§suggestions: &'a [Suggestion]Trait Implementations§
Source§impl<'a> Clone for PackageSuggestionView<'a>
impl<'a> Clone for PackageSuggestionView<'a>
Source§fn clone(&self) -> PackageSuggestionView<'a>
fn clone(&self) -> PackageSuggestionView<'a>
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<'a> Debug for PackageSuggestionView<'a>
impl<'a> Debug for PackageSuggestionView<'a>
impl<'a> Copy for PackageSuggestionView<'a>
Auto Trait Implementations§
impl<'a> Freeze for PackageSuggestionView<'a>
impl<'a> RefUnwindSafe for PackageSuggestionView<'a>
impl<'a> Send for PackageSuggestionView<'a>
impl<'a> Sync for PackageSuggestionView<'a>
impl<'a> Unpin for PackageSuggestionView<'a>
impl<'a> UnsafeUnpin for PackageSuggestionView<'a>
impl<'a> UnwindSafe for PackageSuggestionView<'a>
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