pub enum Match {
Is,
Not,
Ambiguous,
}Expand description
Whether a column occurrence is the differentiation variable, and if its
identity relative to wrt could be established syntactically at all.
Variants§
Is
This occurrence is the wrt column — its tangent is the seed.
Not
This occurrence is definitely a different column — tangent zero.
Ambiguous
The occurrence’s base name matches wrt but its qualification can’t be
pinned syntactically — a bare occurrence when wrt is qualified, or a
qualified occurrence when wrt is bare. Hard error (F2).
Trait Implementations§
impl Copy for Match
impl Eq for Match
impl StructuralPartialEq for Match
Auto Trait Implementations§
impl Freeze for Match
impl RefUnwindSafe for Match
impl Send for Match
impl Sync for Match
impl Unpin for Match
impl UnsafeUnpin for Match
impl UnwindSafe for Match
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