pub enum FixClass {
SerializeGlobalStateTests,
AdvisoryPerfOnNonStrictRunner,
CapabilitySkip,
DependencyUpdate,
CodeFix,
ResourceOptimization,
}Expand description
Suggested remediation strategy for a classified failure.
Variants§
SerializeGlobalStateTests
Serialize tests that share global state (e.g., #[serial_test]).
AdvisoryPerfOnNonStrictRunner
Mark timing-sensitive assertions as advisory on non-strict runners.
CapabilitySkip
Add a capability-gate skip (e.g., #[cfg(unix)], platform check).
DependencyUpdate
Update a dependency or pin a toolchain version.
CodeFix
Fix the production or test code directly.
ResourceOptimization
Reduce resource consumption or increase resource limits.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FixClass
impl<'de> Deserialize<'de> for FixClass
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
impl Eq for FixClass
impl StructuralPartialEq for FixClass
Auto Trait Implementations§
impl Freeze for FixClass
impl RefUnwindSafe for FixClass
impl Send for FixClass
impl Sync for FixClass
impl Unpin for FixClass
impl UnsafeUnpin for FixClass
impl UnwindSafe for FixClass
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.