pub enum ValueOrPlace<V> {
Value(V),
Place(PlaceIndex),
}
Expand description
Used as the result of an operand or r-value.
Variants§
Value(V)
Place(PlaceIndex)
Implementations§
Auto Trait Implementations§
impl<V> RefUnwindSafe for ValueOrPlace<V>where
V: RefUnwindSafe,
impl<V> Send for ValueOrPlace<V>where
V: Send,
impl<V> Sync for ValueOrPlace<V>where
V: Sync,
impl<V> Unpin for ValueOrPlace<V>where
V: Unpin,
impl<V> UnwindSafe for ValueOrPlace<V>where
V: UnwindSafe,
Blanket Implementations§
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.