CodeQL library for Rust
codeql/rust-all 0.2.12 (changelog, source)
Search

Class Raw::AsmOperandExpr

INTERNAL: Do not use. An operand expression in an inline assembly block.

For example:

use core::arch::asm;
asm!("mov {0}, {1}", out(reg) x, in(reg) y);
//                            ^          ^

Import path

import codeql.rust.elements.internal.generated.Raw

Direct supertypes

Indirect supertypes

Predicates

getInExpr

Gets the in expression of this asm operand expression, if it exists.

getOutExpr

Gets the out expression of this asm operand expression, if it exists.

toString