pub enum Version<V, D> {
Entry(V),
Definition {
variable: V,
definition: D,
},
Phi {
variable: V,
block: usize,
},
}Variants§
Trait Implementations§
impl<V: Copy, D: Copy> Copy for Version<V, D>
impl<V: Eq, D: Eq> Eq for Version<V, D>
Source§impl<V: Ord, D: Ord> Ord for Version<V, D>
impl<V: Ord, D: Ord> Ord for Version<V, D>
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<V: PartialOrd, D: PartialOrd> PartialOrd for Version<V, D>
impl<V: PartialOrd, D: PartialOrd> PartialOrd for Version<V, D>
impl<V: PartialEq, D: PartialEq> StructuralPartialEq for Version<V, D>
Auto Trait Implementations§
impl<V, D> Freeze for Version<V, D>
impl<V, D> RefUnwindSafe for Version<V, D>where
V: RefUnwindSafe,
D: RefUnwindSafe,
impl<V, D> Send for Version<V, D>
impl<V, D> Sync for Version<V, D>
impl<V, D> Unpin for Version<V, D>
impl<V, D> UnsafeUnpin for Version<V, D>where
V: UnsafeUnpin,
D: UnsafeUnpin,
impl<V, D> UnwindSafe for Version<V, D>where
V: UnwindSafe,
D: UnwindSafe,
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