pub struct RemovalFrontierV1 {
pub invariant: String,
pub removal_set: Vec<String>,
pub found: bool,
}Expand description
Minimal removal that breaks an invariant. Used for dry-run checking.
Fields§
§invariant: StringThe invariant that would be broken.
removal_set: Vec<String>The minimal set of removals that breaks it.
found: boolWhether the frontier was found (false = invariant is robust).
Trait Implementations§
Source§impl Clone for RemovalFrontierV1
impl Clone for RemovalFrontierV1
Source§fn clone(&self) -> RemovalFrontierV1
fn clone(&self) -> RemovalFrontierV1
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RemovalFrontierV1
impl Debug for RemovalFrontierV1
Source§impl<'de> Deserialize<'de> for RemovalFrontierV1
impl<'de> Deserialize<'de> for RemovalFrontierV1
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
Auto Trait Implementations§
impl Freeze for RemovalFrontierV1
impl RefUnwindSafe for RemovalFrontierV1
impl Send for RemovalFrontierV1
impl Sync for RemovalFrontierV1
impl Unpin for RemovalFrontierV1
impl UnsafeUnpin for RemovalFrontierV1
impl UnwindSafe for RemovalFrontierV1
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