Struct llvm_ir::instruction::FPExt
source · pub struct FPExt {
pub operand: Operand,
pub to_type: TypeRef,
pub dest: Name,
pub debugloc: Option<DebugLoc>,
}
Expand description
Extend a floating-point value. See LLVM 14 docs on the ‘fpext’ instruction
Fields§
§operand: Operand
§to_type: TypeRef
§dest: Name
§debugloc: Option<DebugLoc>
Trait Implementations§
source§impl From<FPExt> for Instruction
impl From<FPExt> for Instruction
source§fn from(inst: FPExt) -> Instruction
fn from(inst: FPExt) -> Instruction
Converts to this type from the input type.
source§impl HasDebugLoc for FPExt
impl HasDebugLoc for FPExt
source§impl PartialEq<FPExt> for FPExt
impl PartialEq<FPExt> for FPExt
source§impl TryFrom<Instruction> for FPExt
impl TryFrom<Instruction> for FPExt
impl StructuralPartialEq for FPExt
Auto Trait Implementations§
impl RefUnwindSafe for FPExt
impl Send for FPExt
impl Sync for FPExt
impl Unpin for FPExt
impl UnwindSafe for FPExt
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