pub struct PackageRule {
    pub on_affected: Vec<String>,
    pub mark_changed: DeterminatorMarkChanged,
}Expand description
Package-based rules for the determinator.
These rules customize the behavior of the determinator based on affected packages, and can be used to insert “virtual dependencies” that Cargo may not be aware of.
§Examples
[[package-rules]]
on-affected = ["determinator"]
mark-changed = ["guppy"]For more examples, see the module-level documentation.
Fields§
§on_affected: Vec<String>The package names to match against.
If any of the packages in this list is affected, the given packages will be marked changed.
§Examples
In TOML format, specified as an array of workspace package names:
on-affected = ["target-spec", "guppy"]mark_changed: DeterminatorMarkChangedThe set of packages to mark as changed.
§Examples
In TOML format, this may be the string "all":
mark-changed = "all"or an array of workspace package names:
mark-changed = ["guppy", "determinator"]Trait Implementations§
Source§impl Clone for PackageRule
 
impl Clone for PackageRule
Source§fn clone(&self) -> PackageRule
 
fn clone(&self) -> PackageRule
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 PackageRule
 
impl Debug for PackageRule
Source§impl<'de> Deserialize<'de> for PackageRule
 
impl<'de> Deserialize<'de> for PackageRule
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
Source§impl PartialEq for PackageRule
 
impl PartialEq for PackageRule
Source§impl Serialize for PackageRule
 
impl Serialize for PackageRule
impl Eq for PackageRule
impl StructuralPartialEq for PackageRule
Auto Trait Implementations§
impl Freeze for PackageRule
impl RefUnwindSafe for PackageRule
impl Send for PackageRule
impl Sync for PackageRule
impl Unpin for PackageRule
impl UnwindSafe for PackageRule
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more