pub enum OutputReferenceValueIntroductionPoint {
New(usize),
Existing(IntroductionPoint),
}
Expand description
The location where a value was introduced for output reference values.
Variants§
New(usize)
A new point introduced by a libfunc. The inner value is the output index.
Existing(IntroductionPoint)
Some other known value.
Trait Implementations§
source§impl Clone for OutputReferenceValueIntroductionPoint
impl Clone for OutputReferenceValueIntroductionPoint
source§fn clone(&self) -> OutputReferenceValueIntroductionPoint
fn clone(&self) -> OutputReferenceValueIntroductionPoint
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for OutputReferenceValueIntroductionPoint
impl Send for OutputReferenceValueIntroductionPoint
impl Sync for OutputReferenceValueIntroductionPoint
impl Unpin for OutputReferenceValueIntroductionPoint
impl UnwindSafe for OutputReferenceValueIntroductionPoint
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