pub struct Phi {
pub incoming_values: Vec<(Operand, Name)>,
pub dest: Name,
pub to_type: TypeRef,
pub debugloc: Option<DebugLoc>,
}Expand description
Fields§
§incoming_values: Vec<(Operand, Name)>§dest: Name§to_type: TypeRef§debugloc: Option<DebugLoc>Trait Implementations§
Source§impl From<Phi> for Instruction
impl From<Phi> for Instruction
Source§fn from(inst: Phi) -> Instruction
fn from(inst: Phi) -> Instruction
Converts to this type from the input type.
Source§impl HasDebugLoc for Phi
impl HasDebugLoc for Phi
Source§impl TryFrom<Instruction> for Phi
impl TryFrom<Instruction> for Phi
impl StructuralPartialEq for Phi
Auto Trait Implementations§
impl Freeze for Phi
impl RefUnwindSafe for Phi
impl Send for Phi
impl Sync for Phi
impl Unpin for Phi
impl UnwindSafe for Phi
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more