pub struct GateFlag {
pub kind: GateKind,
pub source: String,
}Expand description
A gate that a run never exercised, with the source text that names it.
Fields§
§kind: GateKindWhich kind of gate, and what it did.
source: StringThe gate’s source: a select()’s condition, a comparison’s own text,
or a clamp()’s whole call. Re-rendered from the AST (see
Expr::source), so whitespace and redundant parentheses will not match
the preset file character for character.
Trait Implementations§
impl StructuralPartialEq for GateFlag
Auto Trait Implementations§
impl Freeze for GateFlag
impl RefUnwindSafe for GateFlag
impl Send for GateFlag
impl Sync for GateFlag
impl Unpin for GateFlag
impl UnsafeUnpin for GateFlag
impl UnwindSafe for GateFlag
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