pub struct DependencyExclusion {
pub tool_id: String,
pub unmet_requires: Vec<String>,
}Expand description
Exclusion reason for a tool that was blocked by the dependency gate.
Fields§
§tool_id: String§unmet_requires: Vec<String>IDs of requires entries that are not yet satisfied.
Trait Implementations§
Source§impl Clone for DependencyExclusion
impl Clone for DependencyExclusion
Source§fn clone(&self) -> DependencyExclusion
fn clone(&self) -> DependencyExclusion
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 DependencyExclusion
impl Debug for DependencyExclusion
Source§impl PartialEq for DependencyExclusion
impl PartialEq for DependencyExclusion
impl Eq for DependencyExclusion
impl StructuralPartialEq for DependencyExclusion
Auto Trait Implementations§
impl Freeze for DependencyExclusion
impl RefUnwindSafe for DependencyExclusion
impl Send for DependencyExclusion
impl Sync for DependencyExclusion
impl Unpin for DependencyExclusion
impl UnsafeUnpin for DependencyExclusion
impl UnwindSafe for DependencyExclusion
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