pub trait PointerTypeResult:
Op
+ OneResultInterface
+ ResultNOfType<0, PointerType> {
// Required method
fn result_pointee_type(&self, ctx: &Context) -> TypeHandle;
}Expand description
An [Op] with a single result whose type is PointerType
Required Methods§
Sourcefn result_pointee_type(&self, ctx: &Context) -> TypeHandle
fn result_pointee_type(&self, ctx: &Context) -> TypeHandle
Get the pointee type of the result pointer.
Trait Implementations§
impl OpInterfaceMarker for dyn PointerTypeResult
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".